blob: c95a974c75eddd6fb13260f3d67f1097bf12d2df (
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
|
Index: csup/GNUmakefile
===================================================================
--- csup.orig/GNUmakefile
+++ csup/GNUmakefile
@@ -21,7 +21,7 @@ WARNS= -Wall -W -Wno-unused-parameter -W
-Wcast-align -Wunused-parameter -Wchar-subscripts -Winline \
-Wnested-externs -Wredundant-decls -Wno-format-y2k
-CFLAGS+= -g -O -pipe -DNDEBUG -I$(PREFIX)/include
+CFLAGS+= -I$(PREFIX)/include
ifeq ($(UNAME), Linux)
CFLAGS+= -D_XOPEN_SOURCE -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64
endif
@@ -29,14 +29,14 @@ ifeq ($(UNAME), Darwin)
CFLAGS+= -DHAVE_FFLAGS
endif
CFLAGS+= $(WARNS)
-LDFLAGS= -L$(PREFIX)/lib -lcrypto -lz -lpthread
+LIBS= -L$(PREFIX)/lib -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
Index: csup/Makefile
===================================================================
--- csup.orig/Makefile
+++ csup/Makefile
@@ -11,7 +11,7 @@ SRCS= attrstack.c config.c detailer.c di
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
|