From 08aa5e406a1f7b39182e79ea4eb7fabf7d61eaa3 Mon Sep 17 00:00:00 2001 From: makefu Date: Mon, 30 Dec 2013 14:34:38 +0100 Subject: //Cancer -> // because that is what painload is all about --- "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..9be84e13 --- /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) -lm + +.PHONY: all clean + +all: a.out + +clean: + rm -f a.out + +a.out: index.c + $(CC) $(CFLAGS) -o $@ $^ $(LIBS) -- cgit v1.2.3