]> git.ipfire.org Git - people/ms/dnsmasq.git/blame - Makefile
Cosmetic change to start-up logging of DHCPv6 configuration.
[people/ms/dnsmasq.git] / Makefile
CommitLineData
61744359 1# dnsmasq is Copyright (c) 2000-2013 Simon Kelley
824af85b
SK
2#
3# This program is free software; you can redistribute it and/or modify
4# it under the terms of the GNU General Public License as published by
5# the Free Software Foundation; version 2 dated June, 1991, or
6# (at your option) version 3 dated 29 June, 2007.
7#
8# This program is distributed in the hope that it will be useful,
9# but WITHOUT ANY WARRANTY; without even the implied warranty of
10# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11# GNU General Public License for more details.
12#
73a08a24
SK
13# You should have received a copy of the GNU General Public License
14# along with this program. If not, see <http://www.gnu.org/licenses/>.
824af85b 15
24848940 16# NOTE: Building the i18n targets requires GNU-make
9e4abcb5 17
b36ae194 18
24848940
SK
19# Variables you may well want to override.
20
21PREFIX = /usr/local
22BINDIR = $(PREFIX)/sbin
23MANDIR = $(PREFIX)/share/man
24LOCALEDIR = $(PREFIX)/share/locale
25BUILDDIR = $(SRC)
26DESTDIR =
27CFLAGS = -Wall -W -O2
28LDFLAGS =
29COPTS =
30RPM_OPT_FLAGS =
31LIBS =
b36ae194 32
e5ffdb9c
SK
33#################################################################
34
24848940
SK
35# Variables you might want to override.
36
824af85b 37PKG_CONFIG = pkg-config
24848940
SK
38INSTALL = install
39MSGMERGE = msgmerge
40MSGFMT = msgfmt
41XGETTEXT = xgettext
824af85b 42
316e2730 43SRC = src
24848940 44PO = po
316e2730
SK
45MAN = man
46
24848940
SK
47#################################################################
48
c46c7c75
SK
49# pmake way. (NB no spaces to keep gmake 3.82 happy)
50top!=pwd
24848940 51# GNU make way.
c46c7c75 52top?=$(CURDIR)
24848940
SK
53
54dbus_cflags = `echo $(COPTS) | $(top)/bld/pkg-wrapper HAVE_DBUS $(PKG_CONFIG) --cflags dbus-1`
55dbus_libs = `echo $(COPTS) | $(top)/bld/pkg-wrapper HAVE_DBUS $(PKG_CONFIG) --libs dbus-1`
56idn_cflags = `echo $(COPTS) | $(top)/bld/pkg-wrapper HAVE_IDN $(PKG_CONFIG) --cflags libidn`
57idn_libs = `echo $(COPTS) | $(top)/bld/pkg-wrapper HAVE_IDN $(PKG_CONFIG) --libs libidn`
58ct_cflags = `echo $(COPTS) | $(top)/bld/pkg-wrapper HAVE_CONNTRACK $(PKG_CONFIG) --cflags libnetfilter_conntrack`
59ct_libs = `echo $(COPTS) | $(top)/bld/pkg-wrapper HAVE_CONNTRACK $(PKG_CONFIG) --libs libnetfilter_conntrack`
60lua_cflags = `echo $(COPTS) | $(top)/bld/pkg-wrapper HAVE_LUASCRIPT $(PKG_CONFIG) --cflags lua5.1`
61lua_libs = `echo $(COPTS) | $(top)/bld/pkg-wrapper HAVE_LUASCRIPT $(PKG_CONFIG) --libs lua5.1`
62sunos_libs = `if uname | grep SunOS >/dev/null 2>&1; then echo -lsocket -lnsl -lposix4; fi`
63version = -DVERSION='\"`$(top)/bld/get-version $(top)`\"'
64
65objs = cache.o rfc1035.o util.o option.o forward.o network.o \
316e2730 66 dnsmasq.o dhcp.o lease.o rfc2131.o netlink.o dbus.o bpf.o \
c5ad4e79 67 helper.o tftp.o log.o conntrack.o dhcp6.o rfc3315.o \
2bb73af7 68 dhcp-common.o outpacket.o radv.o slaac.o auth.o ipset.o domain.o
208b65c5 69
24848940 70hdrs = dnsmasq.h config.h dhcp-protocol.h dhcp6-protocol.h \
c239f7de 71 dns-protocol.h radv-protocol.h
b36ae194 72
e5ffdb9c
SK
73all : $(BUILDDIR)
74 @cd $(BUILDDIR) && $(MAKE) \
24848940
SK
75 top="$(top)" \
76 build_cflags="$(version) $(dbus_cflags) $(idn_cflags) $(ct_cflags) $(lua_cflags)" \
77 build_libs="$(dbus_libs) $(idn_libs) $(ct_libs) $(lua_libs) $(sunos_libs)" \
78 -f $(top)/Makefile dnsmasq
9e4abcb5 79
ceae52df
SK
80mostly_clean :
81 rm -f $(BUILDDIR)/*.mo $(BUILDDIR)/*.pot
8e4b8791 82 rm -f $(BUILDDIR)/.configured $(BUILDDIR)/*.o $(BUILDDIR)/dnsmasq.a $(BUILDDIR)/dnsmasq
ceae52df
SK
83
84clean : mostly_clean
85 rm -f $(BUILDDIR)/dnsmasq_baseline
86 rm -f core */core
87 rm -f *~ contrib/*/*~ */*~
9e4abcb5 88
b8187c80
SK
89install : all install-common
90
91install-common :
824af85b
SK
92 $(INSTALL) -d $(DESTDIR)$(BINDIR) -d $(DESTDIR)$(MANDIR)/man8
93 $(INSTALL) -m 644 $(MAN)/dnsmasq.8 $(DESTDIR)$(MANDIR)/man8
e5ffdb9c 94 $(INSTALL) -m 755 $(BUILDDIR)/dnsmasq $(DESTDIR)$(BINDIR)
9e4abcb5 95
e5ffdb9c
SK
96all-i18n : $(BUILDDIR)
97 @cd $(BUILDDIR) && $(MAKE) \
24848940
SK
98 top="$(top)" \
99 i18n=-DLOCALEDIR=\'\"$(LOCALEDIR)\"\' \
100 build_cflags="$(version) $(dbus_cflags) $(ct_cflags) $(lua_cflags) `$(PKG_CONFIG) --cflags libidn`" \
101 build_libs="$(dbus_libs) $(ct_libs) $(lua_libs) $(sunos_libs) `$(PKG_CONFIG) --libs libidn`" \
102 -f $(top)/Makefile dnsmasq
fdacfb01 103 for f in `cd $(PO); echo *.po`; do \
24848940 104 cd $(top) && cd $(BUILDDIR) && $(MAKE) top="$(top)" -f $(top)/Makefile $${f%.po}.mo; \
b8187c80
SK
105 done
106
107install-i18n : all-i18n install-common
24848940 108 cd $(BUILDDIR); $(top)/bld/install-mo $(DESTDIR)$(LOCALEDIR) $(INSTALL)
1f15b81d 109 cd $(MAN); ../bld/install-man $(DESTDIR)$(MANDIR) $(INSTALL)
b8187c80 110
fdacfb01 111merge :
24848940 112 @cd $(BUILDDIR) && $(MAKE) -f $(top)/Makefile dnsmasq.pot
fdacfb01
SK
113 for f in `cd $(PO); echo *.po`; do \
114 echo -n msgmerge $(PO)/$$f && $(MSGMERGE) --no-wrap -U $(PO)/$$f $(BUILDDIR)/dnsmasq.pot; \
b8187c80 115 done
9e4abcb5 116
e5ffdb9c 117$(BUILDDIR):
fdacfb01 118 mkdir -p $(BUILDDIR)
b36ae194 119
ceae52df
SK
120# rules below are helpers for size tracking
121
122baseline : mostly_clean all
123 @cd $(BUILDDIR) && \
124 mv dnsmasq dnsmasq_baseline
125
126bloatcheck : $(BUILDDIR)/dnsmasq_baseline mostly_clean all
127 @cd $(BUILDDIR) && \
128 $(top)/bld/bloat-o-meter dnsmasq_baseline dnsmasq; \
129 size dnsmasq_baseline dnsmasq
9e4abcb5 130
8e4b8791
SK
131# rules below are targets in recusive makes with cwd=$(BUILDDIR)
132
133.configured: $(hdrs)
134 @rm -f *.o
135 @touch $@
316e2730 136
24848940
SK
137$(objs:.o=.c) $(hdrs):
138 ln -s $(top)/$(SRC)/$@ .
b36ae194 139
1adadf58 140.c.o:
24848940 141 $(CC) $(CFLAGS) $(COPTS) $(i18n) $(build_cflags) $(RPM_OPT_FLAGS) -c $<
316e2730 142
ceae52df 143dnsmasq : .configured $(hdrs) $(objs)
24848940 144 $(CC) $(LDFLAGS) -o $@ $(objs) $(build_libs) $(LIBS)
316e2730 145
24848940
SK
146dnsmasq.pot : $(objs:.o=.c) $(hdrs)
147 $(XGETTEXT) -d dnsmasq --foreign-user --omit-header --keyword=_ -o $@ -i $(objs:.o=.c)
316e2730 148
24848940 149%.mo : $(top)/$(PO)/%.po dnsmasq.pot
4f8ff361 150 $(MSGMERGE) -o - $(top)/$(PO)/$*.po dnsmasq.pot | $(MSGFMT) -o $*.mo -
316e2730 151
ceae52df 152.PHONY : all clean mostly_clean install install-common all-i18n install-i18n merge baseline bloatcheck