aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-03-16 22:49:20 +1300
committerTom Ryder <tom@sanctum.geek.nz>2016-03-16 23:03:43 +1300
commit1b74462e5f96f5ca97f78a2ae9601bcd30ce0155 (patch)
treed06387b697dd287cfc67ebf475ad13ec1576c0a8 /Makefile
parentFix a couple of bugs clang found (diff)
downloadtunics-1b74462e5f96f5ca97f78a2ae9601bcd30ce0155.tar.gz
tunics-1b74462e5f96f5ca97f78a2ae9601bcd30ce0155.zip
ls(1) accepts one argument
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..1a71395
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,11 @@
+.PHONY: all clean
+
+CC = clang
+CFLAGS = -std=c90 -Weverything
+
+all : ls
+
+clean :
+ rm -f -- *.o
+ rm -f ls
+