blob: 7cec1c087f1163c5c62c1fef23316378b4a77caf (
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
52
53
54
55
56
57
58
59
60
61
62
63
64
|
#
# Patch managed by http://www.holgerschurig.de/patcher.html
#
--- udhcp-0.9.8/Makefile~install.patch
+++ udhcp-0.9.8/Makefile
@@ -1,10 +1,11 @@
# udhcp makefile
+DESTDIR=
prefix=/usr
-SBINDIR=/sbin
-USRSBINDIR=${prefix}/sbin
-USRBINDIR=${prefix}/bin
-USRSHAREDIR=${prefix}/share
+sbindir=/sbin
+usrsbindir=$(prefix)/sbin
+usrbindir=$(prefix)/bin
+datadir=$(prefix)/share
# Uncomment this to get a shared binary. Call as udhcpd for the server,
# and udhcpc for the client
@@ -81,25 +82,27 @@
install: all
-
- $(INSTALL) $(DAEMONS) $(USRSBINDIR)
- $(INSTALL) $(COMMANDS) $(USRBINDIR)
+ $(INSTALL) -d $(DESTDIR)$(usrsbindir)
+ $(INSTALL) $(DAEMONS) $(DESTDIR)$(usrsbindir)
+ $(INSTALL) -d $(DESTDIR)$(usrbindir)
+ $(INSTALL) $(COMMANDS) $(DESTDIR)$(usrbindir)
+ $(INSTALL) -d $(DESTDIR)$(sbindir)
ifdef COMBINED_BINARY
- ln -sf $(USRSBINDIR)/$(DAEMONS) $(SBINDIR)/$(BOOT_PROGRAMS)
+ ln -sf $(usrsbindir)/$(DAEMONS) $(DESTDIR)$(sbindir)/$(BOOT_PROGRAMS)
else
- $(INSTALL) $(BOOT_PROGRAMS) $(SBINDIR)
+ $(INSTALL) $(BOOT_PROGRAMS) $(DESTDIR)$(sbindir)
endif
- mkdir -p $(USRSHAREDIR)/udhcpc
+ $(INSTALL) -d $(DESTDIR)$(datadir)/udhcpc
for name in bound deconfig renew script ; do \
$(INSTALL) samples/sample.$$name \
- $(USRSHAREDIR)/udhcpc/default.$$name ; \
+ $(DESTDIR)$(datadir)/udhcpc/default.$$name ; \
done
- mkdir -p $(USRSHAREDIR)/man/man1
- $(INSTALL) dumpleases.1 $(USRSHAREDIR)/man/man1
- mkdir -p $(USRSHAREDIR)/man/man5
- $(INSTALL) udhcpd.conf.5 $(USRSHAREDIR)/man/man5
- mkdir -p $(USRSHAREDIR)/man/man8
- $(INSTALL) udhcpc.8 udhcpd.8 $(USRSHAREDIR)/man/man8
+ $(INSTALL) -d $(DESTDIR)$(mandir)/man1
+ $(INSTALL) dumpleases.1 $(DESTDIR)$(mandir)/man1
+ $(INSTALL) -d $(DESTDIR)$(mandir)/man5
+ $(INSTALL) udhcpd.conf.5 $(DESTDIR)$(mandir)/man5
+ $(INSTALL) -d $(DESTDIR)$(mandir)/man8
+ $(INSTALL) udhcpc.8 udhcpd.8 $(DESTDIR)$(mandir)/man8
clean:
-rm -f udhcpd udhcpc dumpleases *.o core
|