forked from opnsense/dhcp6c
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.in
121 lines (106 loc) · 4.12 KB
/
Makefile.in
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
# Copyright (c) 2004 WIDE Project. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# 3. Neither the name of the project nor the names of its contributors
# may be used to endorse or promote products derived from this software
# without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
#
# $Id$
# $KAME: Makefile.in,v 1.45 2005/10/16 16:25:38 suz Exp $
#
prefix= @prefix@
srcdir= @srcdir@
sysconfdir= @sysconfdir@
localdbdir= @localdbdir@
user= @user@
group= @group@
CFLAGS= @CFLAGS@ @DEFS@ -DSYSCONFDIR=\"${sysconfdir}\" \
-DLOCALDBDIR=\"${localdbdir}\"
LDFLAGS=@LDFLAGS@
LIBOBJS=@LIBOBJS@
LIBS= @LIBS@ @LEXLIB@
CC= @CC@
TARGET= dhcp6c
INSTALL=@INSTALL@
INSTALL_PROGRAM=@INSTALL_PROGRAM@
INSTALL_DATA=@INSTALL_DATA@
prefix= @prefix@
exec_prefix= @exec_prefix@
bindir= @bindir@
sbindir=@sbindir@
mandir= @mandir@
GENSRCS=cfparse.c cftoken.c
CLIENTOBJS= dhcp6c.o common.o config.o prefixconf.o dhcp6c_ia.o timer.o \
dhcp6c_script.o if.o base64.o auth.o addrconf.o lease.o \
$(GENSRCS:%.c=%.o)
CLEANFILES+= y.tab.h
all: $(TARGET)
dhcp6c: $(CLIENTOBJS) $(LIBOBJS)
$(CC) $(LDFLAGS) -o dhcp6c $(CLIENTOBJS) $(LIBOBJS) $(LIBS)
y.tab.c y.tab.h: cfparse.y
@YACC@ -d cfparse.y
cfparse.c: y.tab.c
mv y.tab.c $@
lex.yy.c: cftoken.l y.tab.h
@LEX@ cftoken.l
cftoken.c: lex.yy.c
mv lex.yy.c $@
getaddrinfo.o: $(srcdir)/missing/getaddrinfo.c
$(CC) -c $(srcdir)/missing/$*.c
getnameinfo.o: $(srcdir)/missing/getnameinfo.c
$(CC) -c $(srcdir)/missing/$*.c
strlcat.o: $(srcdir)/missing/strlcat.c
$(CC) -c $(srcdir)/missing/$*.c
strlcpy.o: $(srcdir)/missing/strlcpy.c
$(CC) -c $(srcdir)/missing/$*.c
arc4random.o: $(srcdir)/missing/arc4random.c
$(CC) $(CFLAGS) -c $(srcdir)/missing/$*.c
getifaddrs.o: $(srcdir)/missing/getifaddrs.c
$(CC) -c $(srcdir)/missing/$*.c
daemon.o: $(srcdir)/missing/daemon.c
$(CC) -c $(srcdir)/missing/$*.c
warnx.o: $(srcdir)/missing/warnx.c
$(CC) -c $(srcdir)/missing/$*.c
$(srcdir)/ianaopts.h: gentab.pl bootp-dhcp-parameters
expand bootp-dhcp-parameters | perl gentab.pl > ianaopts.h
install::
-mkdir -p $(DESTDIR)$(sbindir) $(DESTDIR)$(mandir)/man5 $(DESTDIR)$(mandir)/man8
$(INSTALL_PROGRAM) $(TARGET) $(DESTDIR)$(sbindir)
$(INSTALL_DATA) dhcp6c.8 $(DESTDIR)$(mandir)/man8
$(INSTALL_DATA) dhcp6c.conf.5 $(DESTDIR)$(mandir)/man5
includes::
clean::
/bin/rm -f *.o $(TARGET) $(CLEANFILES) $(GENSRCS)
distclean:: clean
/bin/rm -f Makefile config.cache config.log config.status .depend
depend:
mkdep ${CFLAGS:M-[ID]*} $(srcdir)/*.c
package:
tar -zcvf wide-dhcpv6.tar.gz $(srcdir)/*.[chyl1-8] $(srcdir)/Makefile.in \
$(srcdir)/README $(srcdir)/COPYRIGHT $(srcdir)/CHANGES \
$(srcdir)/configure $(srcdir)/configure.in \
$(srcdir)/install-sh $(srcdir)/*.sample \
$(srcdir)/missing/arc4random.? $(srcdir)/missing/strlcat.c \
$(srcdir)/missing/strlcpy.c $(srcdir)/missing/daemon.c \
$(srcdir)/missing/err.h $(srcdir)/missing/warnx.c \
$(srcdir)/missing/ifaddrs.h $(srcdir)/missing/getifaddrs.c \
$(srcdir)/missing/sys/queue.h