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
Kayne Ruse 99bbe4be3a Removed the local editor files
I'll be using Sketch to create the maps

git clone https://github.com/Ratstail91/Sketch.git
2013-07-01 18:26:27 +10:00

15 lines
160 B
Makefile

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