diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2018-11-10 22:33:16 +1300 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2018-11-10 22:33:16 +1300 |
commit | efbe735a13359457cee83693258230ed14cd40e1 (patch) | |
tree | 149acc9b543ce08d01eb2dd1da978a7fbe405860 | |
parent | Move final return of parse() to end of func (diff) | |
download | texad-efbe735a13359457cee83693258230ed14cd40e1.tar.gz texad-efbe735a13359457cee83693258230ed14cd40e1.zip |
Simplify Makefile a lot
-rw-r--r-- | Makefile | 12 |
1 files changed, 5 insertions, 7 deletions
@@ -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) |