Tomato 1.28
[tomato.git] / release / src / router / dnsmasq / Makefile
blob49acbc31e860ced92a8c20a87b384ea89ddc3cb9
1 # dnsmasq is Copyright (c) 2000-2010 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 DNSMASQ_CFLAGS=`echo $(COPTS) | ../bld/pkg-wrapper HAVE_DBUS $(PKG_CONFIG) --cflags dbus-1`
36 DNSMASQ_LIBS= `echo $(COPTS) | ../bld/pkg-wrapper HAVE_DBUS $(PKG_CONFIG) --libs dbus-1`
37 SUNOS_LIBS= `if uname | grep SunOS 2>&1 >/dev/null; then echo -lsocket -lnsl -lposix4; fi`
39 OBJS = cache.o rfc1035.o util.o option.o forward.o network.o \
40 dnsmasq.o dhcp.o lease.o rfc2131.o netlink.o dbus.o bpf.o \
41 helper.o tftp.o log.o
43 all :
44 @cd $(SRC) && $(MAKE) \
45 BUILD_CFLAGS="$(DNSMASQ_CFLAGS)" \
46 BUILD_LIBS="$(DNSMASQ_LIBS) $(SUNOS_LIBS)" \
47 -f ../Makefile dnsmasq
49 clean :
50 rm -f *~ $(SRC)/*.mo contrib/*/*~ */*~ $(SRC)/*.pot
51 rm -f $(SRC)/*.o $(SRC)/dnsmasq.a $(SRC)/dnsmasq core */core
53 install : all install-common
55 install-common :
56 $(INSTALL) -d $(DESTDIR)$(BINDIR) -d $(DESTDIR)$(MANDIR)/man8
57 $(INSTALL) -m 644 $(MAN)/dnsmasq.8 $(DESTDIR)$(MANDIR)/man8
58 $(INSTALL) -m 755 $(SRC)/dnsmasq $(DESTDIR)$(BINDIR)
60 all-i18n :
61 @cd $(SRC) && $(MAKE) \
62 I18N=-DLOCALEDIR='\"$(LOCALEDIR)\"' \
63 BUILD_CFLAGS="$(DNSMASQ_CFLAGS) `$(PKG_CONFIG) --cflags libidn`" \
64 BUILD_LIBS="$(DNSMASQ_LIBS) $(SUNOS_LIBS) `$(PKG_CONFIG) --libs libidn`" \
65 -f ../Makefile dnsmasq
66 @cd $(PO); for f in *.po; do \
67 cd ../$(SRC) && $(MAKE) \
68 -f ../Makefile $${f%.po}.mo; \
69 done
71 install-i18n : all-i18n install-common
72 cd $(SRC); ../bld/install-mo $(DESTDIR)$(LOCALEDIR) $(INSTALL)
73 cd $(MAN); ../bld/install-man $(DESTDIR)$(MANDIR) $(INSTALL)
75 merge :
76 @cd $(SRC) && $(MAKE) -f ../Makefile dnsmasq.pot
77 @cd $(PO); for f in *.po; do \
78 echo -n msgmerge $$f && $(MSGMERGE) --no-wrap -U $$f ../$(SRC)/dnsmasq.pot; \
79 done
82 # rules below are targets in recusive makes with cwd=$(SRC)
84 .c.o:
85 $(CC) $(CFLAGS) $(COPTS) $(I18N) $(BUILD_CFLAGS) $(RPM_OPT_FLAGS) -c $<
87 dnsmasq : $(OBJS)
88 $(CC) $(LDFLAGS) -o $@ $(OBJS) $(BUILD_LIBS) $(LIBS)
90 dnsmasq.pot : $(OBJS:.o=.c) dnsmasq.h config.h
91 $(XGETTEXT) -d dnsmasq --foreign-user --omit-header --keyword=_ -o $@ -i $(OBJS:.o=.c)
93 %.mo : ../po/%.po dnsmasq.pot
94 $(MSGMERGE) -o - ../po/$*.po dnsmasq.pot | $(MSGFMT) -o $*.mo -
97 .PHONY : all clean install install-common all-i18n install-i18n merge