From 75ff8091aa7746f0ff235572ea098cb083d6500a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=99emysl=20Janouch?= Date: Sat, 6 May 2017 13:27:02 +0200 Subject: Initial commit Nothing is working. --- Makefile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..3810925 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +CFLAGS = -std=gnu99 -Wall +all: ell +ell: ell.c + $(CC) $(CFLAGS) $< -o $@ +clean: + rm ell +.PHONY: all clean -- cgit v1.2.3