Initial commit, basic infrastructure

This commit is contained in:
Kayne Ruse
2014-06-17 01:40:06 +10:00
commit 2b46608d68
16 changed files with 1167 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
#for use on Windows:
#MKDIR=mkdir
#RM=del /y
CXXFLAGS+=-static-libgcc -static-libstdc++
export
OUTDIR=out
all: $(OUTDIR)
$(MAKE) -C perlin
$(MAKE) -C src
$(OUTDIR):
mkdir $(OUTDIR)
clean:
$(RM) *.o *.a *.exe
rebuild: clean all