Changeset 322 for branches/client-1.5/src
- Timestamp:
- Sep 1, 2009, 5:40:59 PM (16 years ago)
- Location:
- branches/client-1.5/src
- Files:
-
- 3 added
- 1 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
branches/client-1.5/src/Makefile.kmk
r195 r322 19 19 DLLS = ndpsmb 20 20 21 # required to get IPFC compiler to work correctly 22 export IPFC=$(TOOLKIT)\IPFC 23 21 24 ndpsmb_RCTOOL =OPENWATCOM 22 25 TOOL_OPENWATCOM_RCFLAGS += -i=$(TOOLKIT)/h 23 26 24 27 ndpsmb_SOURCES = \ 28 version.h \ 25 29 rc/rc.rc \ 26 30 ndpsmb.def \ … … 32 36 33 37 ndpsmb_CFLAGS = -Zomf 34 ndpsmb_CFLAGS.release = -s -O3 -march=pentium -mcpu=pentium4 38 # YD -O2/O3 triggers stack variable alignment bug in gcc 4.3.2/4.4.0! 39 ndpsmb_CFLAGS.release = -g -O1 -march=pentium -mtune=pentium4 35 40 ndpsmb_CFLAGS.debug = -g -O0 -DDEBUG_PRINTF 36 41 ndpsmb_LDFLAGS = -Zomf -Zno-fork -Zmap -Zbin-files … … 56 61 57 62 #build other files (e.g. help) 58 OTHERS = /rc/rc.ipf$(PATH_BIN)/ndpsmb.hlp $(PATH_BIN)/readme.txt59 OTHER_CLEAN = $(PATH_BIN)/ndpsmb.hlp $(PATH_ BIN)/readme.txt63 OTHERS = $(PATH_BIN)/ndpsmb.hlp $(PATH_BIN)/readme.txt 64 OTHER_CLEAN = $(PATH_BIN)/ndpsmb.hlp $(PATH_OBJ)/ndpsmb.ipf $(PATH_BIN)/readme.txt 60 65 61 66 … … 90 95 @BldLevelInf0.cmd $(VERSION) $(BUILD) 91 96 92 # substitute macros in ipf file 93 /rc/rc.ipf: Config.kmk ./rc/rc.ipf 94 $(QUIET)$(SED) "s;_VERSION_;$(VERSION);g" ./rc/rc.ipf \ 97 # compile help file 98 $(PATH_BIN)/ndpsmb.hlp: ./help/ndpsmb.ipf version.h Config.kmk 99 @ppwizard.cmd ./help/ndpsmb.ipf /Pack:N /output:$(PATH_OBJ)/ndpsmb.ipf /other /WarningsRc:0 100 -@mkdir $(PATH_BIN) 101 $(TOOLKIT)\bin\ipfc.exe $(PATH_OBJ)/ndpsmb.ipf $(PATH_BIN)/ndpsmb.hlp /COUNTRY=001 /CODEPAGE=850 102 103 # substitute macros in version.h 104 version.h: Config.kmk version.h_ 105 $(SED) "s;_VERSION_;$(VERSION);g" version.h_ \ 106 | $(SED) "s;_WPIVERSION_;$(subst .,\\\,$(VERSION));g" \ 95 107 | $(SED) "s;_BUILD_;$(BUILD);g" \ 96 > rc.ipf 97 98 # compile help file 99 $(PATH_BIN)/ndpsmb.hlp: rc.ipf ./rc/rc.h ./H/hmacros.h config.kmk 100 -gcc -E -I./h -I./rc -x c rc.ipf > rc.i 101 -@mkdir $(PATH_BIN) 102 $(TOOLKIT)\bin\ipfc.exe rc.i $(PATH_BIN)/ndpsmb.hlp /COUNTRY=001 /CODEPAGE=850 103 rm rc.i 104 rm rc.ipf 108 > version.h 105 109 106 110 # substitute macros in docs -
branches/client-1.5/src/help/ndpsmb.ipf
r321 r322 1 #include <hmacros.h> 2 #include "rc.h" 1 #include "version.h" 3 2 4 3 :userdoc. … … 10 9 .nameit symbol=ressmb text='Samba Resource Properties' 11 10 .nameit symbol=usage text='Usage' 12 .nameit symbol=build text='Samba client for &os. version _VERSION_ build _BUILD_'11 .nameit symbol=build text='Samba client for &os. version <$NDPSMB_VERSION> build <$NDPSMB_BUILD>' 13 12 14 13 :title.NetDrive for &os. Control Panel Help … … 51 50 :eul. 52 51 .******************************************************* 53 HEADING(1,DLG_ID)&ressmb.54 PINDEX(ressmb)&ressmb.52 :h1 res=1000 group=2 x=left y=top width=100% height=100% scroll=both.&ressmb. 53 :i1 id=ressmb.&ressmb. 55 54 :ul. 56 55 :li.:link reftype=hd res=100.&ressmb.:elink.
Note:
See TracChangeset
for help on using the changeset viewer.