blob: 16e85e18e20111fa2e32774e2849cd69ffecddbe [file] [log] [blame]
Simon Kelley61744352013-01-31 14:34:40 +00001# dnsmasq is Copyright (c) 2000-2013 Simon Kelley
Simon Kelley824af852008-02-12 20:43:05 +00002#
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#
Simon Kelley73a08a22009-02-05 20:28:08 +000013# 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/>.
Simon Kelley824af852008-02-12 20:43:05 +000015
Simon Kelley24848942012-02-29 11:23:41 +000016# NOTE: Building the i18n targets requires GNU-make
Simon Kelley9e4abcb2004-01-22 19:47:41 +000017
Simon Kelleyb36ae192012-02-13 12:54:34 +000018
Simon Kelley24848942012-02-29 11:23:41 +000019# 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 =
Simon Kelleyb36ae192012-02-13 12:54:34 +000032
Simon Kelleye5ffdb92012-02-13 14:19:25 +000033#################################################################
34
Simon Kelley24848942012-02-29 11:23:41 +000035# Variables you might want to override.
36
Simon Kelley824af852008-02-12 20:43:05 +000037PKG_CONFIG = pkg-config
Simon Kelley24848942012-02-29 11:23:41 +000038INSTALL = install
39MSGMERGE = msgmerge
40MSGFMT = msgfmt
41XGETTEXT = xgettext
Simon Kelley824af852008-02-12 20:43:05 +000042
Simon Kelley316e2732010-01-22 20:16:09 +000043SRC = src
Simon Kelley24848942012-02-29 11:23:41 +000044PO = po
Simon Kelley316e2732010-01-22 20:16:09 +000045MAN = man
46
Simon Kelley24848942012-02-29 11:23:41 +000047#################################################################
Simon Kelleyfdacfb02012-02-28 15:20:25 +000048
Simon Kelleyc46c7c72012-02-29 21:37:14 +000049# pmake way. (NB no spaces to keep gmake 3.82 happy)
50top!=pwd
Simon Kelley24848942012-02-29 11:23:41 +000051# GNU make way.
Simon Kelleyc46c7c72012-02-29 21:37:14 +000052top?=$(CURDIR)
Simon Kelley9e4abcb2004-01-22 19:47:41 +000053
Simon Kelley24848942012-02-29 11:23:41 +000054dbus_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`
Giovanni Bajo7e846b92012-04-23 00:30:38 +020062ssl_cflags = `echo $(COPTS) | $(top)/bld/pkg-wrapper HAVE_OPENSSL $(PKG_CONFIG) --cflags openssl`
63ssl_libs = `echo $(COPTS) | $(top)/bld/pkg-wrapper HAVE_OPENSSL $(PKG_CONFIG) --libs openssl`
Simon Kelley24848942012-02-29 11:23:41 +000064sunos_libs = `if uname | grep SunOS >/dev/null 2>&1; then echo -lsocket -lnsl -lposix4; fi`
65version = -DVERSION='\"`$(top)/bld/get-version $(top)`\"'
66
67objs = cache.o rfc1035.o util.o option.o forward.o network.o \
Simon Kelley316e2732010-01-22 20:16:09 +000068 dnsmasq.o dhcp.o lease.o rfc2131.o netlink.o dbus.o bpf.o \
Simon Kelleyc5ad4e72012-02-24 16:06:20 +000069 helper.o tftp.o log.o conntrack.o dhcp6.o rfc3315.o \
Giovanni Bajo9940aba2012-04-23 00:32:01 +020070
Giovanni Bajoe292e932012-04-22 14:32:02 +020071 dhcp-common.o outpacket.o radv.o slaac.o auth.o ipset.o \
Giovanni Bajo9940aba2012-04-23 00:32:01 +020072 domain.o dnssec.o dnssec-openssl.o
Simon Kelley208b65c2006-08-05 21:41:37 +010073
Simon Kelley24848942012-02-29 11:23:41 +000074hdrs = dnsmasq.h config.h dhcp-protocol.h dhcp6-protocol.h \
Simon Kelleyc239f7d2012-02-27 10:56:18 +000075 dns-protocol.h radv-protocol.h
Simon Kelleyb36ae192012-02-13 12:54:34 +000076
Simon Kelleye5ffdb92012-02-13 14:19:25 +000077all : $(BUILDDIR)
78 @cd $(BUILDDIR) && $(MAKE) \
Simon Kelley24848942012-02-29 11:23:41 +000079 top="$(top)" \
Giovanni Bajo7e846b92012-04-23 00:30:38 +020080 build_cflags="$(version) $(dbus_cflags) $(idn_cflags) $(ct_cflags) $(lua_cflags) $(ssl_cflags)" \
81 build_libs="$(dbus_libs) $(idn_libs) $(ct_libs) $(lua_libs) $(sunos_libs) $(ssl_libs)" \
Simon Kelley24848942012-02-29 11:23:41 +000082 -f $(top)/Makefile dnsmasq
Simon Kelley9e4abcb2004-01-22 19:47:41 +000083
84clean :
Simon Kelleye5ffdb92012-02-13 14:19:25 +000085 rm -f *~ $(BUILDDIR)/*.mo contrib/*/*~ */*~ $(BUILDDIR)/*.pot
Simon Kelley8e4b8792012-11-14 14:12:56 +000086 rm -f $(BUILDDIR)/.configured $(BUILDDIR)/*.o $(BUILDDIR)/dnsmasq.a $(BUILDDIR)/dnsmasq
87 rm -rf core */core
Simon Kelley9e4abcb2004-01-22 19:47:41 +000088
Simon Kelleyb8187c82005-11-26 21:46:27 +000089install : all install-common
90
91install-common :
Simon Kelley824af852008-02-12 20:43:05 +000092 $(INSTALL) -d $(DESTDIR)$(BINDIR) -d $(DESTDIR)$(MANDIR)/man8
93 $(INSTALL) -m 644 $(MAN)/dnsmasq.8 $(DESTDIR)$(MANDIR)/man8
Simon Kelleye5ffdb92012-02-13 14:19:25 +000094 $(INSTALL) -m 755 $(BUILDDIR)/dnsmasq $(DESTDIR)$(BINDIR)
Simon Kelley9e4abcb2004-01-22 19:47:41 +000095
Simon Kelleye5ffdb92012-02-13 14:19:25 +000096all-i18n : $(BUILDDIR)
97 @cd $(BUILDDIR) && $(MAKE) \
Simon Kelley24848942012-02-29 11:23:41 +000098 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
Simon Kelleyfdacfb02012-02-28 15:20:25 +0000103 for f in `cd $(PO); echo *.po`; do \
Simon Kelley24848942012-02-29 11:23:41 +0000104 cd $(top) && cd $(BUILDDIR) && $(MAKE) top="$(top)" -f $(top)/Makefile $${f%.po}.mo; \
Simon Kelleyb8187c82005-11-26 21:46:27 +0000105 done
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000106
Simon Kelleyb8187c82005-11-26 21:46:27 +0000107install-i18n : all-i18n install-common
Simon Kelley24848942012-02-29 11:23:41 +0000108 cd $(BUILDDIR); $(top)/bld/install-mo $(DESTDIR)$(LOCALEDIR) $(INSTALL)
Simon Kelley1f15b812009-10-13 17:49:32 +0100109 cd $(MAN); ../bld/install-man $(DESTDIR)$(MANDIR) $(INSTALL)
Simon Kelleyb8187c82005-11-26 21:46:27 +0000110
Simon Kelleyfdacfb02012-02-28 15:20:25 +0000111merge :
Simon Kelley24848942012-02-29 11:23:41 +0000112 @cd $(BUILDDIR) && $(MAKE) -f $(top)/Makefile dnsmasq.pot
Simon Kelleyfdacfb02012-02-28 15:20:25 +0000113 for f in `cd $(PO); echo *.po`; do \
114 echo -n msgmerge $(PO)/$$f && $(MSGMERGE) --no-wrap -U $(PO)/$$f $(BUILDDIR)/dnsmasq.pot; \
Simon Kelleyb8187c82005-11-26 21:46:27 +0000115 done
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000116
Simon Kelleye5ffdb92012-02-13 14:19:25 +0000117$(BUILDDIR):
Simon Kelleyfdacfb02012-02-28 15:20:25 +0000118 mkdir -p $(BUILDDIR)
Simon Kelleyb36ae192012-02-13 12:54:34 +0000119
Simon Kelley9e4abcb2004-01-22 19:47:41 +0000120
Simon Kelley8e4b8792012-11-14 14:12:56 +0000121# rules below are targets in recusive makes with cwd=$(BUILDDIR)
122
123.configured: $(hdrs)
124 @rm -f *.o
125 @touch $@
Simon Kelley316e2732010-01-22 20:16:09 +0000126
Simon Kelley24848942012-02-29 11:23:41 +0000127$(objs:.o=.c) $(hdrs):
128 ln -s $(top)/$(SRC)/$@ .
Simon Kelleyb36ae192012-02-13 12:54:34 +0000129
Simon Kelley1adadf52012-02-13 22:15:58 +0000130.c.o:
Simon Kelley24848942012-02-29 11:23:41 +0000131 $(CC) $(CFLAGS) $(COPTS) $(i18n) $(build_cflags) $(RPM_OPT_FLAGS) -c $<
Simon Kelley316e2732010-01-22 20:16:09 +0000132
Simon Kelley8e4b8792012-11-14 14:12:56 +0000133dnsmasq : .configured $(hdrs) $(objs)
Simon Kelley24848942012-02-29 11:23:41 +0000134 $(CC) $(LDFLAGS) -o $@ $(objs) $(build_libs) $(LIBS)
Simon Kelley316e2732010-01-22 20:16:09 +0000135
Simon Kelley24848942012-02-29 11:23:41 +0000136dnsmasq.pot : $(objs:.o=.c) $(hdrs)
137 $(XGETTEXT) -d dnsmasq --foreign-user --omit-header --keyword=_ -o $@ -i $(objs:.o=.c)
Simon Kelley316e2732010-01-22 20:16:09 +0000138
Simon Kelley24848942012-02-29 11:23:41 +0000139%.mo : $(top)/$(PO)/%.po dnsmasq.pot
Simon Kelley4f8ff362012-02-29 16:01:17 +0000140 $(MSGMERGE) -o - $(top)/$(PO)/$*.po dnsmasq.pot | $(MSGFMT) -o $*.mo -
Simon Kelley316e2732010-01-22 20:16:09 +0000141
142
143.PHONY : all clean install install-common all-i18n install-i18n merge