summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-11-10 22:33:16 +1300
committerTom Ryder <tom@sanctum.geek.nz>2018-11-10 22:33:16 +1300
commitefbe735a13359457cee83693258230ed14cd40e1 (patch)
tree149acc9b543ce08d01eb2dd1da978a7fbe405860
parentMove final return of parse() to end of func (diff)
downloadtexad-efbe735a13359457cee83693258230ed14cd40e1.tar.gz
texad-efbe735a13359457cee83693258230ed14cd40e1.zip
Simplify Makefile a lot
-rw-r--r--Makefile12
1 files changed, 5 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index 313ef26..1d1d2dd 100644
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,6 @@
+.POSIX:
.PHONY: all clean
-
-CFLAGS = -ansi -Wall
-
-all : texad
-
-clean :
- rm -f texad
+ALL = texad
+all: $(ALL)
+clean:
+ rm -f $(ALL)