This repository has been archived on 2026-04-30. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Tortuga/makefile
T
2014-06-18 01:00:31 +10:00

24 lines
257 B
Makefile

#for use on Windows:
#MKDIR=mkdir
#RM=del /y
CXXFLAGS+=-static-libgcc -static-libstdc++
export
OUTDIR=out
all: $(OUTDIR)
$(MAKE) -C utils
$(MAKE) -C mapgen
$(MAKE) -C src
$(OUTDIR):
mkdir $(OUTDIR)
clean:
$(RM) *.o *.a *.exe
rebuild: clean all