diff options
author | tv <tv@also> | 2011-07-26 20:36:01 +0200 |
---|---|---|
committer | tv <tv@also> | 2011-07-26 20:36:01 +0200 |
commit | da0e214bf2997217528f2d130e21d21a69c2f97d (patch) | |
tree | 28fbc15d79f0b96135065e462bf4b79532e42654 /Kübelwagen/Makefile | |
parent | 367eaf05de54be22de75793f0b1a49fa0ad45e24 (diff) |
Kübelwagen: initial import
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..e180d047 --- /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) + +.PHONY: all clean + +all: a.out + +clean: + rm -f a.out + +a.out: index.c + $(CC) $(CFLAGS) -o $@ $^ $(LIBS) |