a1b248d1d7
There are six scenes here, each of which representing roughly one part of the final program's backbone.
14 lines
141 B
Makefile
14 lines
141 B
Makefile
OUTDIR=out
|
|
|
|
all: $(OUTDIR)
|
|
$(MAKE) -C libs
|
|
$(MAKE) -C client
|
|
|
|
$(OUTDIR):
|
|
mkdir $(OUTDIR)
|
|
|
|
clean:
|
|
$(RM) *.o *.a *.exe
|
|
|
|
rebuild: clean all
|