diff options
author | tv <tv@shackspace.de> | 2014-12-20 23:50:33 +0100 |
---|---|---|
committer | tv <tv@shackspace.de> | 2014-12-20 23:50:33 +0100 |
commit | 5c7c7d242fa943ec7a96de4a43efa3fc6b1ef77a (patch) | |
tree | b0207325db6b66a9e346956e3793224022be0900 /K_belwagen/Makefile | |
parent | b7ea9e035a729186afb57894891d3bdec43aa9ae (diff) |
nixify Kübelwagen (without UTF-8 :/)
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) |