Made the make variables static
authorMart Lubbers <mart@martlubbers.net>
Wed, 27 Jan 2016 20:37:53 +0000 (21:37 +0100)
committerMart Lubbers <mart@martlubbers.net>
Wed, 27 Jan 2016 20:37:53 +0000 (21:37 +0100)
Clean System Files/Makefile

index 15d9bfa..8a2abe6 100644 (file)
@@ -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)