This repository has been archived by the owner on Aug 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMakefile.am
135 lines (114 loc) · 2.24 KB
/
Makefile.am
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
122
123
124
125
126
127
128
129
130
131
132
133
134
#
#
# Authors:
# Lars Fenneberg <[email protected]>
#
# This software is Copyright 1996,1997 by the above mentioned author(s),
# All Rights Reserved.
#
# The license which is distributed with this software in the file COPYRIGHT
# applies to this software. If your distribution is missing this file, you
# may request it from <[email protected]>.
#
AUTOMAKE_OPTIONS = 1.2 foreign
DEFS = \
-DINET6=1 \
-DLOG_FACILITY=$(LOG_FACILITY) \
-DPATH_RADVD_CONF=\"$(PATH_RADVD_CONF)\" \
-DPATH_RADVD_LOG=\"$(PATH_RADVD_LOG)\" \
-DPATH_RADVD_PID=\"$(PATH_RADVD_PID)\" \
-DVERSION=\"$(VERSION)\"
INCLUDES = \
-I$(srcdir) \
-I.
COMMON_SRC = \
defaults.h \
includes.h \
log.c \
log.h \
pathnames.h \
radvd.h \
recv.c \
socket.c \
util.c
sbin_PROGRAMS = \
radvd \
radvdump
radvd_SOURCES = \
$(COMMON_SRC) \
device-common.c \
gram.h \
gram.y \
interface.c \
process.c \
radvd.c \
scanner.l \
send.c \
timer.c
EXTRA_radvd_SOURCES = \
device-bsd44.c \
device-linux.c \
netlink.c \
netlink.h \
privsep-linux.c
radvd_CPPFLAGS = \
@DAEMON_CFLAGS@
radvd_LDADD = \
@CONDITIONAL_SOURCES@ \
@DAEMON_LIBS@
radvd_DEPENDENCIES = \
@CONDITIONAL_SOURCES@
AM_YFLAGS = -d
AM_CFLAGS = \
-Wall \
-Wcast-align \
-Wcast-qual \
-Wpointer-arith \
-Wmissing-declarations \
-Wmissing-prototypes \
-Wno-strict-aliasing \
-Wstrict-prototypes
radvdump_SOURCES = \
$(COMMON_SRC) \
radvdump.c
man_MANS = \
radvd.8 \
radvd.conf.5 \
radvdump.8
EXTRA_DIST = \
CHANGES \
COPYRIGHT \
INTRO.html \
VERSION \
copyright.blurb \
radvd.8.man \
radvd.conf.5.man \
radvd.conf.example \
radvdump.8.man \
redhat/radvd.conf.empty \
redhat/radvd.init \
redhat/radvd.spec \
redhat/radvd.sysconfig \
redhat/radvd-tmpfs.conf
CLEANFILES = \
gram.c \
gram.h \
radvd.8 \
radvd.conf.5 \
radvdump.8 \
scanner.c
SUFFIXES = .man
.man:
$(AM_V_GEN)$(SED) \
-e 's,@''VERSION''@,$(VERSION),g' \
-e 's,@''sbindir''@,$(sbindir),g' \
-e 's,@''PATH_RADVD_CONF''@,$(PATH_RADVD_CONF),g' \
-e 's,@''PATH_RADVD_PID''@,$(PATH_RADVD_PID),g' \
-e 's,@''PATH_RADVD_LOG''@,$(PATH_RADVD_LOG),g' \
-e 's,@''LOG_FACILITY''@,$(LOG_FACILITY),g' \
$< > $@
dist-hook:
rm -f $(distdir)/gram.c
rm -f $(distdir)/gram.h
rm -f $(distdir)/scanner.c
scanner.o: gram.h