blob: 9afe7bc700c904006dbc8b65735dca46af1a21a5 (
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
|
--- htpdate-1.0.4.orig/Makefile 2008-10-13 21:04:08.000000000 +0200
+++ htpdate-1.0.4/Makefile 2010-02-05 22:49:58.954334284 +0100
@@ -2,8 +2,8 @@ prefix = /usr
bindir = ${prefix}/bin
mandir = ${prefix}/share/man
-CC = gcc
-CFLAGS += -Wall -O2
+CC ?= gcc
+CFLAGS ?= -Wall -O2
#CFLAGS += -Wall -pedantic -ansi -O2
INSTALL = /usr/bin/install -c
@@ -15,15 +15,14 @@ htpdate: htpdate.c
$(CC) $(CFLAGS) -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.gz $(mandir)/man8/htpdate.8.gz
+ mkdir -p $(DESTDIR)$(bindir)
+ $(INSTALL) -m 755 htpdate $(DESTDIR)$(bindir)/htpdate
+ mkdir -p $(DESTDIR)$(mandir)/man8
+ $(INSTALL) -m 644 htpdate.8.gz $(DESTDIR)$(mandir)/man8/htpdate.8.gz
clean:
rm -rf htpdate
uninstall:
- rm -rf $(bindir)/htpdate
- rm -rf $(mandir)/man8/htpdate.8.gz
+ rm -rf $(DESTDIR)$(bindir)/htpdate
+ rm -rf $(DESTDIR)$(mandir)/man8/htpdate.8.gz
|