summaryrefslogtreecommitdiff
path: root/sys-fs/cachefilesd/files/cachefilesd-0.10.9-makefile.patch
blob: b4bda450505f36f205caa131e1bb2011d5ef16dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--- cachefilesd-0.10.9/Makefile
+++ cachefilesd-0.10.9/Makefile
@@ -1,4 +1,3 @@
-CFLAGS		:= -g -O2 -Wall -Wsign-compare
 INSTALL		:= install
 DESTDIR		:=
 ETCDIR		:= /etc
@@ -40,7 +39,10 @@
 ###############################################################################
 all: cachefilesd

-cachefilesd: cachefilesd.c Makefile
+cachefilesd.o: cachefilesd.c
+	$(CC) $(CFLAGS) -c $<
+
+cachefilesd: cachefilesd.o
 	$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $<

 ###############################################################################