Boilerplate, boilerplate, boilerplate!!!

I've created a project for client & editor programs, by simply copying one
to the other. Right now, the client still has the editor scene, but I'll
switch that out soon.

I've also added a license header to the server's source. I don't remember
what else I did, but at this point it should theoretically build out of
the box.
This commit is contained in:
Kayne Ruse
2013-08-29 21:17:43 +10:00
parent e4884c3e18
commit 027d0125ef
38 changed files with 1567 additions and 47 deletions
+3 -5
View File
@@ -1,11 +1,9 @@
LIBDIR=lib
OUTDIR=out
all: $(LIBDIR) $(OUTDIR)
all: $(OUTDIR)
$(MAKE) -C server
$(LIBDIR):
mkdir $(LIBDIR)
$(MAKE) -C client
$(MAKE) -C editor
$(OUTDIR):
mkdir $(OUTDIR)