From da0e214bf2997217528f2d130e21d21a69c2f97d Mon Sep 17 00:00:00 2001 From: tv Date: Tue, 26 Jul 2011 20:36:01 +0200 Subject: =?UTF-8?q?K=C3=BCbelwagen:=20initial=20import?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- "K\303\274belwagen/Makefile" | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 "K\303\274belwagen/Makefile" (limited to 'Kübelwagen/Makefile') diff --git "a/K\303\274belwagen/Makefile" "b/K\303\274belwagen/Makefile" new file mode 100644 index 00000000..e180d047 --- /dev/null +++ "b/K\303\274belwagen/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) -- cgit v1.2.3