mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-25 19:18:08 -07:00
20 lines
531 B
Diff
20 lines
531 B
Diff
--- 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 $@ $<
|
|
|
|
###############################################################################
|