summaryrefslogtreecommitdiff
path: root/dev-util/csup/files/csup-20060318-respectflags.patch
blob: 541622df5777c399dcd6633451b9851cf252a3ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -21,22 +21,22 @@
 	-Wcast-align -Wunused-parameter -Wchar-subscripts -Winline \
 	-Wnested-externs -Wredundant-decls -Wno-format-y2k
 
-CFLAGS+= -g -O -pipe -DNDEBUG -I$(PREFIX)/include
+CPPFLAGS+= -DNDEBUG -I$(PREFIX)/include
 ifeq ($(UNAME), Linux)
-	CFLAGS+= -D_XOPEN_SOURCE -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64
+	CPPFLAGS+= -D_XOPEN_SOURCE -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64
 endif
 ifeq ($(UNAME), Darwin)
-	CFLAGS+= -DHAVE_FFLAGS
+	CPPFLAGS+= -DHAVE_FFLAGS
 endif
 CFLAGS+= $(WARNS)
-LDFLAGS= -L$(PREFIX)/lib -lcrypto -lz -lpthread
+LIBS= -lcrypto -lz -lpthread
 
 .PHONY: all clean install
 
 all: csup csup.1.gz
 
 csup: $(OBJS)
-	$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
+	$(CC) $(LDFLAGS) $(CFLAGS) -o $@ $^ $(LIBS)
 
 config.c: parse.h
 
@@ -49,9 +49,6 @@
 clean:
 	rm -f csup $(OBJS) parse.c parse.h token.c csup.1.gz
 
-%.o: %.c
-	$(CC) $(CFLAGS) -c -o $@ $<
-
 %.c: %.y
 	$(YACC) -d -o $@ $<
 
--- a/Makefile
+++ b/Makefile
@@ -11,7 +11,7 @@
 	globtree.c idcache.c keyword.c lister.c main.c misc.c mux.c parse.y \
 	pathcomp.c proto.c status.c stream.c threads.c token.l updater.c
 
-CFLAGS+=	-I. -I${.CURDIR} -g -pthread -DHAVE_FFLAGS -DNDEBUG
+CFLAGS+=	-I. -I${.CURDIR} -pthread -DHAVE_FFLAGS
 WARNS?=		6
 
 # A bit of tweaking is needed to get this Makefile working