Started working on the room system

This commit is contained in:
Kayne Ruse
2013-08-11 20:39:08 +10:00
commit 0a0b61287e
9 changed files with 217 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
LIBDIR=lib
OUTDIR=out
all: $(LIBDIR) $(OUTDIR)
$(MAKE) -C server
$(LIBDIR):
mkdir $(LIBDIR)
$(OUTDIR):
mkdir $(OUTDIR)
clean:
$(RM) *.o *.a *.exe
rebuild: clean all