Merge branch 'Teaman-ND' into Teaman-RT
[tomato.git] / release / src / router / dnsmasq / Makefile
blob4aa93be522d902d7ece4ee0ed91d957463f9003a
1 # dnsmasq is Copyright (c) 2000-2011 Simon Kelley
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.
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.
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/>.
16 PREFIX = /usr/local
17 BINDIR = ${PREFIX}/sbin
18 MANDIR = ${PREFIX}/share/man
19 LOCALEDIR = ${PREFIX}/share/locale
21 PKG_CONFIG = pkg-config
22 INSTALL = install
23 MSGMERGE = msgmerge
24 MSGFMT = msgfmt
25 XGETTEXT = xgettext
27 CFLAGS = -Wall -W -O2
29 #################################################################
31 SRC = src
32 PO = po
33 MAN = man
35 DBUS_CFLAGS=`echo $(COPTS) | ../bld/pkg-wrapper HAVE_DBUS $(PKG_CONFIG) --cflags dbus-1`
36 DBUS_LIBS= `echo $(COPTS) | ../bld/pkg-wrapper HAVE_DBUS $(PKG_CONFIG) --libs dbus-1`
37 IDN_CFLAGS= `echo $(COPTS) | ../bld/pkg-wrapper HAVE_IDN $(PKG_CONFIG) --cflags libidn`
38 IDN_LIBS= `echo $(COPTS) | ../bld/pkg-wrapper HAVE_IDN $(PKG_CONFIG) --libs libidn`
39 CT_CFLAGS= `echo $(COPTS) | ../bld/pkg-wrapper HAVE_CONNTRACK $(PKG_CONFIG) --cflags libnetfilter_conntrack`
40 CT_LIBS= `echo $(COPTS) | ../bld/pkg-wrapper HAVE_CONNTRACK $(PKG_CONFIG) --libs libnetfilter_conntrack`
41 SUNOS_LIBS= `if uname | grep SunOS 2>&1 >/dev/null; then echo -lsocket -lnsl -lposix4; fi`
43 OBJS = cache.o rfc1035.o util.o option.o forward.o network.o \
44 dnsmasq.o dhcp.o lease.o rfc2131.o netlink.o dbus.o bpf.o \
45 helper.o tftp.o log.o conntrack.o
47 all :
48 @cd $(SRC) && $(MAKE) \
49 BUILD_CFLAGS="$(DBUS_CFLAGS) $(IDN_CFLAGS) $(CT_CFLAGS)" \
50 BUILD_LIBS="$(DBUS_LIBS) $(IDN_LIBS) $(CT_LIBS) $(SUNOS_LIBS)" \
51 -f ../Makefile dnsmasq
53 clean :
54 rm -f *~ $(SRC)/*.mo contrib/*/*~ */*~ $(SRC)/*.pot
55 rm -f $(SRC)/*.o $(SRC)/dnsmasq.a $(SRC)/dnsmasq core */core
57 install : all install-common
59 install-common :
60 $(INSTALL) -d $(DESTDIR)$(BINDIR) -d $(DESTDIR)$(MANDIR)/man8
61 $(INSTALL) -m 644 $(MAN)/dnsmasq.8 $(DESTDIR)$(MANDIR)/man8
62 $(INSTALL) -m 755 $(SRC)/dnsmasq $(DESTDIR)$(BINDIR)
64 all-i18n :
65 @cd $(SRC) && $(MAKE) \
66 I18N=-DLOCALEDIR='\"$(LOCALEDIR)\"' \
67 BUILD_CFLAGS="$(DBUS_CFLAGS) $(CT_CFLAGS) `$(PKG_CONFIG) --cflags libidn`" \
68 BUILD_LIBS="$(DBUS_LIBS) $(CT_LIBS) $(SUNOS_LIBS) `$(PKG_CONFIG) --libs libidn`" \
69 -f ../Makefile dnsmasq
70 @cd $(PO); for f in *.po; do \
71 cd ../$(SRC) && $(MAKE) \
72 -f ../Makefile $${f%.po}.mo; \
73 done
75 install-i18n : all-i18n install-common
76 cd $(SRC); ../bld/install-mo $(DESTDIR)$(LOCALEDIR) $(INSTALL)
77 cd $(MAN); ../bld/install-man $(DESTDIR)$(MANDIR) $(INSTALL)
79 merge :
80 @cd $(SRC) && $(MAKE) -f ../Makefile dnsmasq.pot
81 @cd $(PO); for f in *.po; do \
82 echo -n msgmerge $$f && $(MSGMERGE) --no-wrap -U $$f ../$(SRC)/dnsmasq.pot; \
83 done
86 # rules below are targets in recusive makes with cwd=$(SRC)
88 .c.o:
89 $(CC) $(CFLAGS) $(COPTS) $(I18N) $(BUILD_CFLAGS) $(RPM_OPT_FLAGS) -c $<
91 dnsmasq : $(OBJS)
92 $(CC) $(LDFLAGS) -o $@ $(OBJS) $(BUILD_LIBS) $(LIBS)
94 dnsmasq.pot : $(OBJS:.o=.c) dnsmasq.h config.h
95 $(XGETTEXT) -d dnsmasq --foreign-user --omit-header --keyword=_ -o $@ -i $(OBJS:.o=.c)
97 %.mo : ../po/%.po dnsmasq.pot
98 $(MSGMERGE) -o - ../po/$*.po dnsmasq.pot | $(MSGFMT) -o $*.mo -
101 .PHONY : all clean install install-common all-i18n install-i18n merge