- Timestamp:
- Sep 19, 2024, 8:11:55 PM (2 months ago)
- Location:
- trunk
- Files:
-
- 2 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile
r53 r79 39 39 $(MAKE) -C ./Common $(FLAGS) clean 40 40 $(MAKE) -C ./Manpage $(FLAGS) clean 41 rm -f ./Server/option 41 rm -f ./Server/option install-*ssl.exe -
trunk/config.h.tmpl
r78 r79 13 13 14 14 #endif 15 16 /* 17 vim: syntax=c 18 */ -
trunk/installer.sh
r78 r79 5 5 rm -f tewi-service.exe 6 6 rm -f tewi.exe 7 mv config.h.bak config.h 7 8 exit 1 8 9 } 9 10 10 11 VERSION=`make get-version` 12 13 sed "s/undef NO_SSL/define NO_SSL/g" config.h.tmpl > config.h 11 14 12 15 make clean || fail … … 18 21 cd Server 19 22 makensis -DVERSION=$VERSION install.nsi 23 cp install.exe ../install-nossl.exe 20 24 rm -f tewi.exe tewi-service.exe 21 25 cd .. 26 27 sed "s/define NO_SSL/undef NO_SSL/g" config.h.tmpl > config.h 28 29 make clean || fail 30 make PLATFORM=$1 -j4 || fail 31 cp Server/tewi.exe tewi.exe 32 make clean || fail 33 make PLATFORM=$1-service -j4 || fail 34 cp Server/tewi.exe tewi-service.exe 35 cd Server 36 makensis -DVERSION=$VERSION install.nsi 37 cp install.exe ../install-ssl.exe 38 rm -f tewi.exe tewi-service.exe 39 cd ..
Note:
See TracChangeset
for help on using the changeset viewer.