From 6bfc2a4830b041cd2dc93dfb932f5f56b88981da Mon Sep 17 00:00:00 2001 From: EliteTK Date: Tue, 23 Sep 2014 19:50:14 +0100 Subject: Fixed .gitignore, added makefile and license, updated timer. --- 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..184f8be --- /dev/null +++ b/makefile @@ -0,0 +1,7 @@ +CFLAGS = -O2 -std=C11 + +all: + echo "You did it wrong, you're supposed to give me a file to compile." + +% : %.c + $(CC) $(CFLAGS) -o $@ $^ -- cgit v1.2.3-54-g00ecf