43dadcdbb8
I just _had_ to get rid of that horrible libs/ directory. Now most of the graphical stuff is in client/, but I'll create more subdirectories so that they're not getting in the way.
20 lines
229 B
Makefile
20 lines
229 B
Makefile
LIBDIR=lib
|
|
OUTDIR=out
|
|
|
|
all: $(LIBDIR) $(OUTDIR)
|
|
$(MAKE) -C common
|
|
$(MAKE) -C server
|
|
$(MAKE) -C client
|
|
$(MAKE) -C test
|
|
|
|
$(LIBDIR):
|
|
mkdir $(LIBDIR)
|
|
|
|
$(OUTDIR):
|
|
mkdir $(OUTDIR)
|
|
|
|
clean:
|
|
$(RM) *.o *.a *.exe
|
|
|
|
rebuild: clean all
|