summaryrefslogtreecommitdiffstats
path: root/Kübelwagen/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Kübelwagen/Makefile')
-rw-r--r--Kübelwagen/Makefile14
1 files changed, 0 insertions, 14 deletions
diff --git a/Kübelwagen/Makefile b/Kübelwagen/Makefile
deleted file mode 100644
index 9be84e13..00000000
--- a/Kübelwagen/Makefile
+++ /dev/null
@@ -1,14 +0,0 @@
-
-CC := gcc -std=c99
-CFLAGS := -D_XOPEN_SOURCE=500
-LIBS := $(shell pkg-config --cflags --libs jack) -lm
-
-.PHONY: all clean
-
-all: a.out
-
-clean:
- rm -f a.out
-
-a.out: index.c
- $(CC) $(CFLAGS) -o $@ $^ $(LIBS)