This repository has been archived on 2026-04-30. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Tortuga/makefile
T
2013-06-09 17:06:32 +10:00

16 lines
177 B
Makefile

OUTDIR=out
all: $(OUTDIR)
$(MAKE) -C libs
$(MAKE) -C server
$(MAKE) -C client
$(MAKE) -C test
$(OUTDIR):
mkdir $(OUTDIR)
clean:
$(RM) *.o *.a *.exe
rebuild: clean all