repositories
/
CleanReadLine.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
45b44a6
)
Made the make variables static
author
Mart Lubbers
<mart@martlubbers.net>
Wed, 27 Jan 2016 20:37:53 +0000
(21:37 +0100)
committer
Mart Lubbers
<mart@martlubbers.net>
Wed, 27 Jan 2016 20:37:53 +0000
(21:37 +0100)
Clean System Files/Makefile
patch
|
blob
|
history
diff --git
a/Clean System Files/Makefile
b/Clean System Files/Makefile
index
15d9bfa
..
8a2abe6
100644
(file)
--- 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)