summaryrefslogtreecommitdiff
path: root/package/htpdate/patches/patch-Makefile
blob: b7b80f427340a95782f3d90b07c68a464a73129c (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
--- htpdate-1.1.1.orig/Makefile	2014-02-07 09:55:26.000000000 +0100
+++ htpdate-1.1.1/Makefile	2015-02-03 06:09:46.000000000 +0100
@@ -2,12 +2,10 @@ prefix = $(DESTDIR)/usr
 bindir = ${prefix}/bin
 mandir = ${prefix}/share/man
 
-CC = gcc
-CFLAGS += -Wall -O2
-#CFLAGS += -Wall -pedantic -ansi -O2
+CC ?= gcc
+CFLAGS ?=
 
 INSTALL = /usr/bin/install -c
-STRIP = /usr/bin/strip -s
 
 all: htpdate
 
@@ -15,16 +13,11 @@ htpdate: htpdate.c
 	$(CC) $(CFLAGS) $(LDFLAGS) $(CPPFLAGS) -o htpdate htpdate.c
 
 install: all
-	$(STRIP) htpdate
 	mkdir -p $(bindir)
 	$(INSTALL) -m 755 htpdate $(bindir)/htpdate
-	mkdir -p $(mandir)/man8
-	$(INSTALL) -m 644 htpdate.8 $(mandir)/man8/htpdate.8
-	gzip -f -9 $(mandir)/man8/htpdate.8
 
 clean:
 	rm -rf htpdate
 
 uninstall:
 	rm -rf $(bindir)/htpdate
-	rm -rf $(mandir)/man8/htpdate.8.gz