From: Mart Lubbers Date: Wed, 27 Jan 2016 20:37:53 +0000 (+0100) Subject: Made the make variables static X-Git-Tag: v0.3^2 X-Git-Url: https://git.martlubbers.net/?a=commitdiff_plain;h=1cb510c49eb44e18f88c5efd646fe07f55d038c0;p=CleanReadLine.git Made the make variables static --- diff --git a/Clean System Files/Makefile b/Clean System Files/Makefile index 15d9bfa..8a2abe6 100644 --- a/Clean System Files/Makefile +++ b/Clean System Files/Makefile @@ -1,7 +1,8 @@ -CFLAGS=-Wall -pedantic -std=c99 -LDFLAGS=-lreadline +CFLAGS:=-Wall -pedantic -std=c99 +LDFLAGS:=-lreadline +OBJS:=readLine.o -all: readLine.o +all: $(OBJS) clean: - $(RM) -v readLine.o + $(RM) -v $(OBJS)