]> git.ipfire.org Git - people/ms/dnsmasq.git/blame - Makefile
Add donate button to doc.html.
[people/ms/dnsmasq.git] / Makefile
CommitLineData
c47e3ba4 1# dnsmasq is Copyright (c) 2000-2014 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 53
86bec2d3
SK
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`
62nettle_cflags = `echo $(COPTS) | $(top)/bld/pkg-wrapper HAVE_DNSSEC $(PKG_CONFIG) --cflags nettle hogweed`
63nettle_libs = `echo $(COPTS) | $(top)/bld/pkg-wrapper HAVE_DNSSEC $(PKG_CONFIG) --libs nettle hogweed`
b98d22c1 64gmp_libs = `echo $(COPTS) | $(top)/bld/pkg-wrapper HAVE_DNSSEC $(PKG_CONFIG) --copy -lgmp`
86bec2d3 65sunos_libs = `if uname | grep SunOS >/dev/null 2>&1; then echo -lsocket -lnsl -lposix4; fi`
24848940
SK
66version = -DVERSION='\"`$(top)/bld/get-version $(top)`\"'
67
68objs = cache.o rfc1035.o util.o option.o forward.o network.o \
316e2730 69 dnsmasq.o dhcp.o lease.o rfc2131.o netlink.o dbus.o bpf.o \
c5ad4e79 70 helper.o tftp.o log.o conntrack.o dhcp6.o rfc3315.o \
e292e93d 71 dhcp-common.o outpacket.o radv.o slaac.o auth.o ipset.o \
86bec2d3 72 domain.o dnssec.o blockdata.o
208b65c5 73
24848940 74hdrs = dnsmasq.h config.h dhcp-protocol.h dhcp6-protocol.h \
cc111e0b 75 dns-protocol.h radv-protocol.h ip6addr.h
b36ae194 76
e5ffdb9c
SK
77all : $(BUILDDIR)
78 @cd $(BUILDDIR) && $(MAKE) \
24848940 79 top="$(top)" \
86bec2d3 80 build_cflags="$(version) $(dbus_cflags) $(idn_cflags) $(ct_cflags) $(lua_cflags) $(nettle_cflags)" \
b98d22c1 81 build_libs="$(dbus_libs) $(idn_libs) $(ct_libs) $(lua_libs) $(sunos_libs) $(nettle_libs) $(gmp_libs)" \
24848940 82 -f $(top)/Makefile dnsmasq
9e4abcb5 83
ceae52df
SK
84mostly_clean :
85 rm -f $(BUILDDIR)/*.mo $(BUILDDIR)/*.pot
8e4b8791 86 rm -f $(BUILDDIR)/.configured $(BUILDDIR)/*.o $(BUILDDIR)/dnsmasq.a $(BUILDDIR)/dnsmasq
ceae52df
SK
87
88clean : mostly_clean
89 rm -f $(BUILDDIR)/dnsmasq_baseline
90 rm -f core */core
91 rm -f *~ contrib/*/*~ */*~
9e4abcb5 92
b8187c80
SK
93install : all install-common
94
95install-common :
824af85b
SK
96 $(INSTALL) -d $(DESTDIR)$(BINDIR) -d $(DESTDIR)$(MANDIR)/man8
97 $(INSTALL) -m 644 $(MAN)/dnsmasq.8 $(DESTDIR)$(MANDIR)/man8
e5ffdb9c 98 $(INSTALL) -m 755 $(BUILDDIR)/dnsmasq $(DESTDIR)$(BINDIR)
9e4abcb5 99
e5ffdb9c
SK
100all-i18n : $(BUILDDIR)
101 @cd $(BUILDDIR) && $(MAKE) \
24848940
SK
102 top="$(top)" \
103 i18n=-DLOCALEDIR=\'\"$(LOCALEDIR)\"\' \
00ec693d 104 build_cflags="$(version) $(dbus_cflags) $(ct_cflags) $(lua_cflags) $(nettle_cflags) `$(PKG_CONFIG) --cflags libidn`" \
b98d22c1 105 build_libs="$(dbus_libs) $(ct_libs) $(lua_libs) $(sunos_libs) $(nettle_libs) $(gmp_libs) `$(PKG_CONFIG) --libs libidn`" \
24848940 106 -f $(top)/Makefile dnsmasq
fdacfb01 107 for f in `cd $(PO); echo *.po`; do \
24848940 108 cd $(top) && cd $(BUILDDIR) && $(MAKE) top="$(top)" -f $(top)/Makefile $${f%.po}.mo; \
b8187c80
SK
109 done
110
111install-i18n : all-i18n install-common
24848940 112 cd $(BUILDDIR); $(top)/bld/install-mo $(DESTDIR)$(LOCALEDIR) $(INSTALL)
1f15b81d 113 cd $(MAN); ../bld/install-man $(DESTDIR)$(MANDIR) $(INSTALL)
b8187c80 114
fdacfb01 115merge :
24848940 116 @cd $(BUILDDIR) && $(MAKE) -f $(top)/Makefile dnsmasq.pot
fdacfb01
SK
117 for f in `cd $(PO); echo *.po`; do \
118 echo -n msgmerge $(PO)/$$f && $(MSGMERGE) --no-wrap -U $(PO)/$$f $(BUILDDIR)/dnsmasq.pot; \
b8187c80 119 done
9e4abcb5 120
b7f666ff
SK
121# Cannonicalise .po file.
122%.po :
123 @cd $(BUILDDIR) && $(MAKE) -f $(top)/Makefile dnsmasq.pot
124 mv $(PO)/$*.po $(PO)/$*.po.orig && $(MSGMERGE) --no-wrap $(PO)/$*.po.orig $(BUILDDIR)/dnsmasq.pot >$(PO)/$*.po;
125
e5ffdb9c 126$(BUILDDIR):
fdacfb01 127 mkdir -p $(BUILDDIR)
b36ae194 128
ceae52df
SK
129# rules below are helpers for size tracking
130
131baseline : mostly_clean all
132 @cd $(BUILDDIR) && \
133 mv dnsmasq dnsmasq_baseline
134
135bloatcheck : $(BUILDDIR)/dnsmasq_baseline mostly_clean all
136 @cd $(BUILDDIR) && \
137 $(top)/bld/bloat-o-meter dnsmasq_baseline dnsmasq; \
138 size dnsmasq_baseline dnsmasq
9e4abcb5 139
8e4b8791
SK
140# rules below are targets in recusive makes with cwd=$(BUILDDIR)
141
142.configured: $(hdrs)
143 @rm -f *.o
144 @touch $@
316e2730 145
24848940
SK
146$(objs:.o=.c) $(hdrs):
147 ln -s $(top)/$(SRC)/$@ .
b36ae194 148
1adadf58 149.c.o:
24848940 150 $(CC) $(CFLAGS) $(COPTS) $(i18n) $(build_cflags) $(RPM_OPT_FLAGS) -c $<
316e2730 151
ceae52df 152dnsmasq : .configured $(hdrs) $(objs)
24848940 153 $(CC) $(LDFLAGS) -o $@ $(objs) $(build_libs) $(LIBS)
316e2730 154
24848940
SK
155dnsmasq.pot : $(objs:.o=.c) $(hdrs)
156 $(XGETTEXT) -d dnsmasq --foreign-user --omit-header --keyword=_ -o $@ -i $(objs:.o=.c)
316e2730 157
24848940 158%.mo : $(top)/$(PO)/%.po dnsmasq.pot
4f8ff361 159 $(MSGMERGE) -o - $(top)/$(PO)/$*.po dnsmasq.pot | $(MSGFMT) -o $*.mo -
316e2730 160
ceae52df 161.PHONY : all clean mostly_clean install install-common all-i18n install-i18n merge baseline bloatcheck