From efbe735a13359457cee83693258230ed14cd40e1 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sat, 10 Nov 2018 22:33:16 +1300 Subject: Simplify Makefile a lot --- Makefile | 12 +++++------- 1 file 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) -- cgit v1.2.3