4ed512e0e2
I've also adjusted the TODO file, which really shouldn't be committed. Still, it's there now, so it stays. I don't think the logger is going to be possible any time soon, so I'll probably look into the disconnection handler.
31 lines
480 B
Makefile
31 lines
480 B
Makefile
#for use on Windows:
|
|
|
|
#MKDIR=mkdir
|
|
#RM=del /y
|
|
|
|
OUTDIR=out
|
|
|
|
all: $(OUTDIR)
|
|
$(MAKE) -C common
|
|
$(MAKE) -C server
|
|
$(MAKE) -C client
|
|
|
|
debug: export CXXFLAGS+=-g
|
|
debug: clean all
|
|
|
|
release: export CXXFLAGS+=-static-libgcc -static-libstdc++
|
|
release: clean all package
|
|
|
|
#For use on my machine ONLY
|
|
package:
|
|
rar a -r -ep Tortuga.rar $(OUTDIR)/*.exe $(OUTDIR)/*.dll
|
|
rar a -r Tortuga.rar rsc/* copyright.txt
|
|
|
|
$(OUTDIR):
|
|
mkdir $(OUTDIR)
|
|
|
|
clean:
|
|
$(RM) *.o *.a *.exe
|
|
|
|
rebuild: clean all
|