diff options
Diffstat (limited to 'Kübelwagen/Makefile')
-rw-r--r-- | Kübelwagen/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Kübelwagen/Makefile b/Kübelwagen/Makefile new file mode 100644 index 00000000..9be84e13 --- /dev/null +++ b/Kübelwagen/Makefile @@ -0,0 +1,14 @@ + +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) |