blob: 953c0aa1be4ce2b760fae462a90e06a0b2f8a059 [file] [log] [blame]
Harald Welte3efb6ea2001-08-06 18:50:21 +00001# uncomment this to get a fully statically linked version
2# NO_SHARED_LIBS = 1
3
Harald Welte3a5026f2001-09-02 16:07:33 +00004######################################################################
5# YOU SHOULD NOT NEED TO TOUCH ANYTHING BELOW THIS LINE
6######################################################################
7
8# Standard part of Makefile for topdir.
9TOPLEVEL_INCLUDED=YES
10
Marc Bouchere6869a82000-03-20 06:03:29 +000011ifndef KERNEL_DIR
12KERNEL_DIR=/usr/src/linux
13endif
Harald Welte6a31b712002-08-26 12:24:51 +000014IPTABLES_VERSION:=1.2.7a
15OLD_IPTABLES_VERSION:=1.2.6a
Marc Bouchere6869a82000-03-20 06:03:29 +000016
Harald Welteba6d0122002-02-17 19:49:26 +000017PREFIX:=/usr/local
18LIBDIR:=$(PREFIX)/lib
19BINDIR:=$(PREFIX)/sbin
20MANDIR:=$(PREFIX)/man
21INCDIR:=$(PREFIX)/include
Marc Bouchere6869a82000-03-20 06:03:29 +000022
Harald Welte3a5026f2001-09-02 16:07:33 +000023# directory for new iptables releases
24RELEASE_DIR:=/tmp
25
Rusty Russell209820b2001-01-08 08:14:33 +000026# Need libc6 for this. FIXME: Should covert to autoconf.
Rusty Russell4d2afbf2001-05-01 02:06:08 +000027ifeq ($(shell [ -f /usr/include/netinet/ip6.h ] && echo YES), YES)
Rusty Russell8e07bd72000-12-19 03:11:00 +000028DO_IPV6=1
29endif
30
Harald Welte380ba5f2002-02-13 16:19:55 +000031COPT_FLAGS:=-O2
Harald Welte80fe35d2002-05-29 13:08:15 +000032CFLAGS:=$(COPT_FLAGS) -Wall -Wunused -I$(KERNEL_DIR)/include -Iinclude/ -DIPTABLES_VERSION=\"$(IPTABLES_VERSION)\" #-g -DDEBUG #-pg # -DIPTC_DEBUG
Marc Bouchere6869a82000-03-20 06:03:29 +000033
Harald Welte3efb6ea2001-08-06 18:50:21 +000034ifdef NO_SHARED_LIBS
35CFLAGS += -DNO_SHARED_LIBS=1
36endif
37
38ifndef NO_SHARED_LIBS
Rusty Russell5622f212000-05-02 16:42:09 +000039DEPFILES = $(SHARED_LIBS:%.so=%.d)
Marc Bouchere6869a82000-03-20 06:03:29 +000040SH_CFLAGS:=$(CFLAGS) -fPIC
Harald Welte3efb6ea2001-08-06 18:50:21 +000041STATIC_LIBS =
42STATIC6_LIBS =
43LDFLAGS = -rdynamic
44LDLIBS = -ldl
45else
46DEPFILES = $(EXT_OBJS:%.o=%.d)
47STATIC_LIBS = extensions/libext.a
48STATIC6_LIBS = extensions/libext6.a
Harald Welte2a7116e2002-08-26 13:09:40 +000049LDFLAGS = -static
Harald Welte3efb6ea2001-08-06 18:50:21 +000050LDLIBS =
51endif
Marc Bouchere6869a82000-03-20 06:03:29 +000052
Rusty Russell2e5f9532001-01-07 09:37:02 +000053EXTRAS+=iptables iptables.o
Rusty Russell01c45202001-01-07 06:50:31 +000054EXTRA_INSTALLS+=$(DESTDIR)$(BINDIR)/iptables $(DESTDIR)$(MANDIR)/man8/iptables.8
55
Harald Welteeba774d2001-10-16 08:22:40 +000056# No longer experimental.
57EXTRAS+=iptables-save iptables-restore
58EXTRA_INSTALLS+=$(DESTDIR)$(BINDIR)/iptables-save $(DESTDIR)$(BINDIR)/iptables-restore $(DESTDIR)$(MANDIR)/man8/iptables-restore.8 $(DESTDIR)$(MANDIR)/man8/iptables-save.8
Rusty Russell8e07bd72000-12-19 03:11:00 +000059
60ifdef DO_IPV6
61EXTRAS+=ip6tables ip6tables.o
András Kis-Szabó06129432001-10-14 13:27:03 +000062EXTRA_INSTALLS+=$(DESTDIR)$(BINDIR)/ip6tables $(DESTDIR)$(MANDIR)/man8/ip6tables.8
Harald Welte8a6831a2001-03-15 15:33:56 +000063EXTRAS_EXP+=ip6tables-save ip6tables-restore
Harald Welte46d4d0a2001-03-16 15:48:56 +000064EXTRA_INSTALLS_EXP+=$(DESTDIR)$(BINDIR)/ip6tables-save $(DESTDIR)$(BINDIR)/ip6tables-restore # $(DESTDIR)$(MANDIR)/man8/iptables-restore.8 $(DESTDIR)$(MANDIR)/man8/iptables-save.8 $(DESTDIR)$(MANDIR)/man8/ip6tables-save.8 $(DESTDIR)$(MANDIR)/man8/ip6tables-restore.8
Rusty Russell8e07bd72000-12-19 03:11:00 +000065endif
Marc Bouchere6869a82000-03-20 06:03:29 +000066
Rusty Russell09b9a412000-04-27 10:16:47 +000067# Sparc64 hack
68ifeq ($(shell uname -m),sparc64)
69# The kernel is 64-bit, even though userspace is 32.
Rusty Russellc8d7d892000-09-19 07:01:00 +000070CFLAGS+=-DIPT_MIN_ALIGN=8 -DKERNEL_64_USERSPACE_32
Rusty Russell09b9a412000-04-27 10:16:47 +000071endif
72
Rusty Russellda707152001-04-21 04:25:09 +000073# HPPA hack
74ifeq ($(shell uname -m),parisc64)
75# The kernel is 64-bit, even though userspace is 32.
76CFLAGS+=-DIPT_MIN_ALIGN=8 -DKERNEL_64_USERSPACE_32
77endif
78
Marc Bouchere6869a82000-03-20 06:03:29 +000079ifndef IPT_LIBDIR
80IPT_LIBDIR:=$(LIBDIR)/iptables
81endif
82
Harald Welte7505d612001-07-31 13:06:17 +000083.PHONY: default
Rusty Russell52451822000-08-27 07:47:46 +000084default: print-extensions all
85
Harald Welte7505d612001-07-31 13:06:17 +000086.PHONY: print-extensions
Rusty Russell52451822000-08-27 07:47:46 +000087print-extensions:
Rusty Russellc8d7d892000-09-19 07:01:00 +000088 @[ -n "$(OPTIONALS)" ] && echo Extensions found: $(OPTIONALS)
Marc Bouchere6869a82000-03-20 06:03:29 +000089
90iptables.o: iptables.c
91 $(CC) $(CFLAGS) -DIPT_LIB_DIR=\"$(IPT_LIBDIR)\" -c -o $@ $<
92
Harald Welte3efb6ea2001-08-06 18:50:21 +000093iptables: iptables-standalone.c iptables.o $(STATIC_LIBS) libiptc/libiptc.a
94 $(CC) $(CFLAGS) -DIPT_LIB_DIR=\"$(IPT_LIBDIR)\" $(LDFLAGS) -o $@ $^ $(LDLIBS)
Marc Bouchere6869a82000-03-20 06:03:29 +000095
96$(DESTDIR)$(BINDIR)/iptables: iptables
97 @[ -d $(DESTDIR)$(BINDIR) ] || mkdir -p $(DESTDIR)$(BINDIR)
98 cp $< $@
99
Harald Welte3efb6ea2001-08-06 18:50:21 +0000100iptables-save: iptables-save.c iptables.o $(STATIC_LIBS) libiptc/libiptc.a
101 $(CC) $(CFLAGS) -DIPT_LIB_DIR=\"$(IPT_LIBDIR)\" $(LDFLAGS) -o $@ $^ $(LDLIBS)
Marc Bouchere6869a82000-03-20 06:03:29 +0000102
103$(DESTDIR)$(BINDIR)/iptables-save: iptables-save
104 @[ -d $(DESTDIR)$(BINDIR) ] || mkdir -p $(DESTDIR)$(BINDIR)
105 cp $< $@
106
Harald Welte3efb6ea2001-08-06 18:50:21 +0000107iptables-restore: iptables-restore.c iptables.o $(STATIC_LIBS) libiptc/libiptc.a
108 $(CC) $(CFLAGS) -DIPT_LIB_DIR=\"$(IPT_LIBDIR)\" $(LDFLAGS) -o $@ $^ $(LDLIBS)
Marc Bouchere6869a82000-03-20 06:03:29 +0000109
110$(DESTDIR)$(BINDIR)/iptables-restore: iptables-restore
111 @[ -d $(DESTDIR)$(BINDIR) ] || mkdir -p $(DESTDIR)$(BINDIR)
112 cp $< $@
113
Philip Blundell8c700902000-05-15 02:17:52 +0000114ip6tables.o: ip6tables.c
Harald Welte0aefbd32001-05-11 21:41:47 +0000115 $(CC) $(CFLAGS) -DIP6T_LIB_DIR=\"$(IPT_LIBDIR)\" -c -o $@ $<
Philip Blundell8c700902000-05-15 02:17:52 +0000116
Harald Welte3efb6ea2001-08-06 18:50:21 +0000117ip6tables: ip6tables-standalone.c ip6tables.o $(STATIC6_LIBS) libiptc/libiptc.a
Harald Welte2a7116e2002-08-26 13:09:40 +0000118 $(CC) $(CFLAGS) -DIP6T_LIB_DIR=\"$(IPT_LIBDIR)\" $(LDFLAGS) -o $@ $^ $(LDLIBS)
Philip Blundell8c700902000-05-15 02:17:52 +0000119
120$(DESTDIR)$(BINDIR)/ip6tables: ip6tables
121 @[ -d $(DESTDIR)$(BINDIR) ] || mkdir -p $(DESTDIR)$(BINDIR)
122 cp $< $@
123
Harald Welte3efb6ea2001-08-06 18:50:21 +0000124ip6tables-save: ip6tables-save.c ip6tables.o $(STATIC6_LIBS) libiptc/libiptc.a
Harald Welte2a7116e2002-08-26 13:09:40 +0000125 $(CC) $(CFLAGS) -DIP6T_LIB_DIR=\"$(IPT_LIBDIR)\" $(LDFLAGS) -o $@ $^ $(LDLIBS)
Philip Blundell8c700902000-05-15 02:17:52 +0000126
127$(DESTDIR)$(BINDIR)/ip6tables-save: ip6tables-save
128 @[ -d $(DESTDIR)$(BINDIR) ] || mkdir -p $(DESTDIR)$(BINDIR)
129 cp $< $@
130
Harald Welte3efb6ea2001-08-06 18:50:21 +0000131ip6tables-restore: ip6tables-restore.c ip6tables.o $(STATIC6_LIBS) libiptc/libiptc.a
Harald Welte2a7116e2002-08-26 13:09:40 +0000132 $(CC) $(CFLAGS) -DIP6T_LIB_DIR=\"$(IPT_LIBDIR)\" $(LDFLAGS) -o $@ $^ $(LDLIBS)
Philip Blundell8c700902000-05-15 02:17:52 +0000133
134$(DESTDIR)$(BINDIR)/ip6tables-restore: ip6tables-restore
135 @[ -d $(DESTDIR)$(BINDIR) ] || mkdir -p $(DESTDIR)$(BINDIR)
136 cp $< $@
137
Rusty Russell01c45202001-01-07 06:50:31 +0000138$(DESTDIR)$(MANDIR)/man8/%.8: %.8
Marc Bouchere6869a82000-03-20 06:03:29 +0000139 @[ -d $(DESTDIR)$(MANDIR)/man8 ] || mkdir -p $(DESTDIR)$(MANDIR)/man8
140 cp $< $@
141
142EXTRA_DEPENDS+=iptables-standalone.d iptables.d
143
144iptables-standalone.d iptables.d: %.d: %.c
145 @-$(CC) -M -MG $(CFLAGS) $< | sed -e 's@^.*\.o:@$*.d $*.o:@' > $@
146
James Morrisc82e9ac2000-11-24 14:34:02 +0000147
148# Development Targets
Harald Welte7505d612001-07-31 13:06:17 +0000149.PHONY: install-devel-man3
James Morrisc82e9ac2000-11-24 14:34:02 +0000150install-devel-man3: $(DEVEL_MAN3)
151 @[ -d $(DESTDIR)$(MANDIR)/man3 ] || mkdir -p $(DESTDIR)$(MANDIR)/man3
152 @cp -v $(DEVEL_MAN3) $(DESTDIR)$(MANDIR)/man3
153
Harald Welte7505d612001-07-31 13:06:17 +0000154.PHONY: install-devel-headers
James Morrisc82e9ac2000-11-24 14:34:02 +0000155install-devel-headers: $(DEVEL_HEADERS)
156 @[ -d $(DESTDIR)$(INCDIR) ] || mkdir -p $(DESTDIR)$(INCDIR)
157 @cp -v $(DEVEL_HEADERS) $(DESTDIR)$(INCDIR)
158
Harald Welte7505d612001-07-31 13:06:17 +0000159.PHONY: install-devel-libs
James Morrisc82e9ac2000-11-24 14:34:02 +0000160install-devel-libs: $(DEVEL_LIBS)
161 @[ -d $(DESTDIR)$(LIBDIR) ] || mkdir -p $(DESTDIR)$(LIBDIR)
162 @cp -v $(DEVEL_LIBS) $(DESTDIR)$(LIBDIR)
163
Harald Welte7505d612001-07-31 13:06:17 +0000164.PHONY: install-devel
James Morrisc82e9ac2000-11-24 14:34:02 +0000165install-devel: all install-devel-man3 install-devel-headers install-devel-libs
166
Harald Welte7505d612001-07-31 13:06:17 +0000167.PHONY: distclean
Rusty Russell905795c2000-04-19 11:22:03 +0000168distclean: clean
Rusty Russella470f332000-11-07 04:08:34 +0000169 @rm -f TAGS `find . -name '*~' -o -name '.*~'` `find . -name '*.rej'` `find . -name '*.d'` .makefirst
Rusty Russell175f6412000-03-24 09:32:20 +0000170
171# Rusty's distro magic.
Harald Welte7505d612001-07-31 13:06:17 +0000172.PHONY: distrib
Harald Welte80fe35d2002-05-29 13:08:15 +0000173distrib: check distclean delrelease $(RELEASE_DIR)/iptables-$(IPTABLES_VERSION).tar.bz2 diff md5sums # nowhitespace
Rusty Russell175f6412000-03-24 09:32:20 +0000174
175# Makefile must not define:
Harald Welte380ba5f2002-02-13 16:19:55 +0000176# -g -pg -DIPTC_DEBUG
Harald Welte7505d612001-07-31 13:06:17 +0000177.PHONY: check
Rusty Russell175f6412000-03-24 09:32:20 +0000178check:
Harald Welte380ba5f2002-02-13 16:19:55 +0000179 @if echo $(CFLAGS) | egrep -e '-g|-pg|IPTC_DEBUG' >/dev/null; then echo Remove debugging flags; exit 1; else exit 0; fi
Rusty Russell175f6412000-03-24 09:32:20 +0000180
Harald Welte7505d612001-07-31 13:06:17 +0000181.PHONY: nowhitespace
Rusty Russell175f6412000-03-24 09:32:20 +0000182nowhitespace:
Rusty Russell2e5f9532001-01-07 09:37:02 +0000183 @if grep -n '[ ]$$' `find . -name 'Makefile' -o -name '*.[ch]'`; then exit 1; else exit 0; fi
Rusty Russell175f6412000-03-24 09:32:20 +0000184
Harald Welte7505d612001-07-31 13:06:17 +0000185.PHONY: delrelease
Rusty Russell175f6412000-03-24 09:32:20 +0000186delrelease:
Harald Welte80fe35d2002-05-29 13:08:15 +0000187 rm -f $(RELEASE_DIR)/iptables-$(IPTABLES_VERSION).tar.bz2
Rusty Russell175f6412000-03-24 09:32:20 +0000188
Harald Welte80fe35d2002-05-29 13:08:15 +0000189$(RELEASE_DIR)/iptables-$(IPTABLES_VERSION).tar.bz2:
190 cd .. && ln -sf userspace iptables-$(IPTABLES_VERSION) && tar cvf - --exclude CVS iptables-$(IPTABLES_VERSION)/. | bzip2 -9 > $@ && rm iptables-$(IPTABLES_VERSION)
Rusty Russell175f6412000-03-24 09:32:20 +0000191
Harald Welte7505d612001-07-31 13:06:17 +0000192.PHONY: diff
Harald Welte80fe35d2002-05-29 13:08:15 +0000193diff: $(RELEASE_DIR)/iptables-$(IPTABLES_VERSION).tar.bz2
Rusty Russell175f6412000-03-24 09:32:20 +0000194 @mkdir /tmp/diffdir
Harald Welte80fe35d2002-05-29 13:08:15 +0000195 @cd /tmp/diffdir && tar -x --bzip2 -f $(RELEASE_DIR)/iptables-$(IPTABLES_VERSION).tar.bz2
196 @set -e; cd /tmp/diffdir; tar -x --bzip2 -f $(RELEASE_DIR)/iptables-$(OLD_IPTABLES_VERSION).tar.bz2; echo Creating patch-iptables-$(OLD_IPTABLES_VERSION)-$(IPTABLES_VERSION).bz2; diff -urN iptables-$(OLD_IPTABLES_VERSION) iptables-$(IPTABLES_VERSION) | bzip2 -9 > $(RELEASE_DIR)/patch-iptables-$(OLD_IPTABLES_VERSION)-$(IPTABLES_VERSION).bz2
Rusty Russell175f6412000-03-24 09:32:20 +0000197 @rm -rf /tmp/diffdir
198
Harald Welte7505d612001-07-31 13:06:17 +0000199.PHONY: md5sums
Rusty Russell175f6412000-03-24 09:32:20 +0000200md5sums:
Harald Welte80fe35d2002-05-29 13:08:15 +0000201 cd $(RELEASE_DIR)/ && md5sum patch-iptables-*-$(IPTABLES_VERSION).bz2 iptables-$(IPTABLES_VERSION).tar.bz2
Rusty Russell175f6412000-03-24 09:32:20 +0000202
Marc Bouchere6869a82000-03-20 06:03:29 +0000203# $(wildcard) fails wierdly with make v.3.78.1.
204include $(shell echo */Makefile)
205include Rules.make