diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -110,10 +110,16 @@ clean: src/common/GNUmakefile src/login/GNUmakefile src/char/GNUmakefile src/map cd src ; cd ladmin ; $(MAKE) $(MKDEF) $@ ; cd .. cd src ; cd txt-converter ; cd login ; $(MAKE) $(MKLIB) $@ ; cd .. cd src ; cd txt-converter ; cd char ; $(MAKE) $(MKLIB) $@ ; cd .. + cd src ; cd webserver; $(MAKE) $(MKDEF) $@ ; cd .. tools: cd tool && $(MAKE) $(MKDEF) && cd .. $(CC) -o setupwizard setupwizard.c +webserver: + cd src ; cd webserver ; $(MAKE) $(MKDEF) $@ ; cd .. + +#webserver: src/webserver/GNUmakefile + src/common/GNUmakefile: src/common/Makefile sed -e 's/$$>/$$^/' src/common/Makefile > src/common/GNUmakefile @@ -133,3 +139,5 @@ src/txt-converter/login/GNUmakefile: src/txt-converter/login/Makefile sed -e 's/$$>/$$^/' src/txt-converter/login/Makefile > src/txt-converter/login/GNUmakefile src/txt-converter/char/GNUmakefile: src/txt-converter/char/Makefile sed -e 's/$$>/$$^/' src/txt-converter/char/Makefile > src/txt-converter/char/GNUmakefile +src/webserver/GNUmakefile: src/webserver/Makefile + sed -e 's/$$>/$$^/' src/webserver/Makefile > src/webserver/GNUmakefile
\ No newline at end of file |