From 1cb510c49eb44e18f88c5efd646fe07f55d038c0 Mon Sep 17 00:00:00 2001 From: Mart Lubbers Date: Wed, 27 Jan 2016 21:37:53 +0100 Subject: [PATCH] Made the make variables static --- Clean System Files/Makefile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) 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) -- 2.20.1