aboutsummaryrefslogtreecommitdiffstats
path: root/turff/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'turff/Makefile')
-rwxr-xr-xturff/Makefile19
1 files changed, 0 insertions, 19 deletions
diff --git a/turff/Makefile b/turff/Makefile
deleted file mode 100755
index 1664c59..0000000
--- a/turff/Makefile
+++ /dev/null
@@ -1,19 +0,0 @@
-CFLAGS=-g -I. -I../
-LDFLAGS=-lm
-DEPS = turff_api.h ../globals.h ../utils.h
-OBJ = turff.o turff_api.o ../utils.o ../globals.o
-
-all: turff
-
-debug: DFLAGS=-DDBG
-debug: clean turff
-
-%.o: %.c $(DEPS)
- $(CC) -c -o $@ $< $(CFLAGS) $(DFLAGS)
-
-turff: $(OBJ)
- $(CC) -o $@ $^ $(CFLAGS) $(LDFLAGS)
-
-.PHONY: clean
-clean:
- rm -rf $(OBJ) turff