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-08-11 20:39:08 +10:00

17 lines
174 B
Makefile

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