Libraries are building correctly

This commit is contained in:
Kayne Ruse
2013-06-07 04:10:31 +10:00
commit 2757911399
29 changed files with 3098 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
OUTDIR=out
all: $(OUTDIR)
$(MAKE) -C codebase
$(MAKE) -C SDL_net
$(OUTDIR):
mkdir $(OUTDIR)
clean:
$(RM) *.o *.a *.exe
rebuild: clean all