Created the client program's framework

There are six scenes here, each of which representing roughly one part of
the final program's backbone.
This commit is contained in:
Kayne Ruse
2013-06-08 01:36:19 +10:00
parent 2757911399
commit a1b248d1d7
21 changed files with 1108 additions and 2 deletions
+7 -1
View File
@@ -1,5 +1,11 @@
all:
OUTDIR=out
all: $(OUTDIR)
$(MAKE) -C libs
$(MAKE) -C client
$(OUTDIR):
mkdir $(OUTDIR)
clean:
$(RM) *.o *.a *.exe