From 128fb157b302f0f0881844fc7a2fa5653c74a197 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=99emysl=20Janouch?= Date: Thu, 22 Dec 2016 22:58:20 +0100 Subject: Initial commit --- Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..5bb5db1 --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +# All we need is C99 and POSIX, which this should make available +CFLAGS = -std=gnu99 +NAMES = bfc-amd64-linux + +all: $(NAMES) + +%: %.c + $(CC) $(CPPFLAGS) $(CFLAGS) $< -o $@ +clean: + rm -f $(NAMES) + +.PHONY: all clean -- cgit v1.2.3