027d0125ef
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.
15 lines
162 B
Makefile
15 lines
162 B
Makefile
OUTDIR=out
|
|
|
|
all: $(OUTDIR)
|
|
$(MAKE) -C server
|
|
$(MAKE) -C client
|
|
$(MAKE) -C editor
|
|
|
|
$(OUTDIR):
|
|
mkdir $(OUTDIR)
|
|
|
|
clean:
|
|
$(RM) *.o *.a *.exe
|
|
|
|
rebuild: clean all
|