summaryrefslogtreecommitdiffstats
path: root/avahi-autoipd/Makefile.am
blob: 263e991e714a5153c3ab239a111dc31991070d8b (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
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
# This file is part of avahi.
#
# avahi is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as
# published by the Free Software Foundation; either version 2 of the
# License, or (at your option) any later version.
#
# avahi is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
# License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with avahi; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
# USA.

if ENABLE_AUTOIPD
if HAVE_LIBDAEMON

pkgsysconfdir=$(sysconfdir)/avahi

AM_CFLAGS= \
	-I$(top_srcdir)

# This cool debug trap works on i386/gcc only
AM_CFLAGS+='-DDEBUG_TRAP=__asm__("int $$3")' \
	-DAVAHI_RUNTIME_DIR=\"$(avahi_runtime_dir)/\" \
	-DAVAHI_IPCONF_SCRIPT=\"$(pkgsysconfdir)/avahi-autoipd.action\" \
	-DAVAHI_IPDATA_DIR=\"$(localstatedir)/lib/avahi-autoipd\"

sbin_PROGRAMS = avahi-autoipd

avahi_autoipd_SOURCES = \
	main.c main.h \
	 ../avahi-daemon/setproctitle.c  ../avahi-daemon/setproctitle.h \
	iface.h	\
	../avahi-common/malloc.h ../avahi-common/malloc.c \
	../avahi-common/timeval.h ../avahi-common/timeval.c

avahi_autoipd_CFLAGS = $(AM_CFLAGS) $(LIBDAEMON_CFLAGS)
avahi_autoipd_LDADD = $(AM_LDADD) $(LIBDAEMON_LIBS)

if TARGET_FREEBSD
avahi_autoipd_SOURCES += iface-bsd.c
avahi_autoipd_LDADD += -lpcap
else
avahi_autoipd_SOURCES += iface-linux.c
endif

nodist_pkgsysconf_SCRIPTS = avahi-autoipd.action

if TARGET_FREEBSD
avahi-autoipd.action: avahi-autoipd.action.bsd
	$(AM_V_GEN)cp $< $@
else
avahi-autoipd.action: avahi-autoipd.action.linux
	$(AM_V_GEN)cp $< $@
endif

if TARGET_DEBIAN

noinst_SCRIPTS = dhclient-enter-hook dhclient-exit-hook

dhclient-enter-hook: dhclient-enter-hook.in
	$(AM_V_GEN)sed -e 's,@sbindir\@,$(sbindir),g' $< > $@ && \
	chmod +x $@

dhclient-exit-hook: dhclient-exit-hook.in
	$(AM_V_GEN)sed -e 's,@sbindir\@,$(sbindir),g' $< > $@ && \
	chmod +x $@

BUILD = dhclient-exit-hook dhclient-enter-hook

dhcliententerdir = $(sysconfdir)/dhcp/dhclient-enter-hooks.d
dhclientexitdir = $(sysconfdir)/dhcp/dhclient-exit-hooks.d

install-exec-hook: dhclient-exit-hook dhclient-enter-hook
	$(mkdir_p) $(DESTDIR)$(dhcliententerdir) $(DESTDIR)$(dhclientexitdir)
	$(INSTALL) dhclient-enter-hook $(DESTDIR)$(dhcliententerdir)/avahi-autoipd
	$(INSTALL) dhclient-exit-hook $(DESTDIR)$(dhclientexitdir)/avahi-autoipd

uninstall-hook:
	rm -f $(DESTDIR)$(dhcliententerdir)/avahi-autoipd $(DESTDIR)$(dhclientexitdir)/avahi-autoipd

endif


endif
endif

EXTRA_DIST = dhclient-enter-hook.in dhclient-exit-hook.in avahi-autoipd.action.linux avahi-autoipd.action.bsd

CLEANFILES = dhclient-enter-hook dhclient-exit-hook avahi-autoipd.action