blob: 623c86aa76cc5ae29911a8540de42dad57ff5f4e [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 Welte2354d922003-03-04 23:15:42 +00004# uncomment this to disable IPv6 support
5# DO_IPV6 = 0
6
Harald Welte3a5026f2001-09-02 16:07:33 +00007######################################################################
8# YOU SHOULD NOT NEED TO TOUCH ANYTHING BELOW THIS LINE
9######################################################################
10
11# Standard part of Makefile for topdir.
12TOPLEVEL_INCLUDED=YES
13
Marc Bouchere6869a82000-03-20 06:03:29 +000014ifndef KERNEL_DIR
15KERNEL_DIR=/usr/src/linux
16endif
Harald Weltef1528c82004-06-17 12:21:11 +000017IPTABLES_VERSION:=1.2.11
18OLD_IPTABLES_VERSION:=1.2.10
Marc Bouchere6869a82000-03-20 06:03:29 +000019
Harald Welteba6d0122002-02-17 19:49:26 +000020PREFIX:=/usr/local
21LIBDIR:=$(PREFIX)/lib
22BINDIR:=$(PREFIX)/sbin
23MANDIR:=$(PREFIX)/man
24INCDIR:=$(PREFIX)/include
Marc Bouchere6869a82000-03-20 06:03:29 +000025
Harald Welte3a5026f2001-09-02 16:07:33 +000026# directory for new iptables releases
27RELEASE_DIR:=/tmp
28
Rusty Russell209820b2001-01-08 08:14:33 +000029# Need libc6 for this. FIXME: Should covert to autoconf.
Rusty Russell4d2afbf2001-05-01 02:06:08 +000030ifeq ($(shell [ -f /usr/include/netinet/ip6.h ] && echo YES), YES)
Harald Welte2354d922003-03-04 23:15:42 +000031DO_IPV6:=1
Rusty Russell8e07bd72000-12-19 03:11:00 +000032endif
33
Harald Welte380ba5f2002-02-13 16:19:55 +000034COPT_FLAGS:=-O2
Harald Welte80fe35d2002-05-29 13:08:15 +000035CFLAGS:=$(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 +000036
Harald Welte3efb6ea2001-08-06 18:50:21 +000037ifdef NO_SHARED_LIBS
38CFLAGS += -DNO_SHARED_LIBS=1
39endif
40
Henrik Nordstromc2794132004-01-22 15:04:24 +000041EXTRAS+=iptables iptables.o iptables.8
Rusty Russell01c45202001-01-07 06:50:31 +000042EXTRA_INSTALLS+=$(DESTDIR)$(BINDIR)/iptables $(DESTDIR)$(MANDIR)/man8/iptables.8
43
Harald Welteeba774d2001-10-16 08:22:40 +000044# No longer experimental.
45EXTRAS+=iptables-save iptables-restore
46EXTRA_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 +000047
Harald Welte2354d922003-03-04 23:15:42 +000048ifeq ($(DO_IPV6), 1)
Henrik Nordstromc2794132004-01-22 15:04:24 +000049EXTRAS+=ip6tables ip6tables.o ip6tables.8
András Kis-Szabó06129432001-10-14 13:27:03 +000050EXTRA_INSTALLS+=$(DESTDIR)$(BINDIR)/ip6tables $(DESTDIR)$(MANDIR)/man8/ip6tables.8
Harald Welte8a6831a2001-03-15 15:33:56 +000051EXTRAS_EXP+=ip6tables-save ip6tables-restore
Harald Welte46d4d0a2001-03-16 15:48:56 +000052EXTRA_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 +000053endif
Marc Bouchere6869a82000-03-20 06:03:29 +000054
Rusty Russell09b9a412000-04-27 10:16:47 +000055# Sparc64 hack
56ifeq ($(shell uname -m),sparc64)
Martin Josefssondc93fce2004-05-26 15:46:27 +000057 POINTERTEST:=1
58 32bituser := $(shell echo -e "\#include <stdio.h>\n\#if !defined(__sparcv9) && !defined(__arch64__) && !defined(_LP64)\nuserspace_is_32bit\n\#endif" | $(CC) $(CFLAGS) -E - | grep userspace_is_32bit)
59 ifdef 32bituser
60 # The kernel is 64-bit, even though userspace is 32.
61 CFLAGS+=-DIPT_MIN_ALIGN=8 -DKERNEL_64_USERSPACE_32
62 else
63 EXT_LDFLAGS=-m elf64_sparc
64 endif
Rusty Russell09b9a412000-04-27 10:16:47 +000065endif
66
Martin Josefssondc93fce2004-05-26 15:46:27 +000067# Alpha only has 64bit userspace and fails the test below
68ifeq ($(shell uname -m), alpha)
69 POINTERTEST:=1
70endif
71
72# Generic test if arch wasn't found above
73ifneq ($(POINTERTEST),1)
74 # Try to determine if kernel is 64bit and we are compiling for 32bit
75 ifeq ($(shell [ -a $(KERNEL_DIR)/include/asm ] && echo YES), YES)
76 64bitkernel := $(shell echo -e "\#include <asm/types.h>\n\#if BITS_PER_LONG == 64\nkernel_is_64bits\n\#endif" | $(CC) $(CFLAGS) -D__KERNEL__ -E - | grep kernel_is_64bits)
77 ifdef 64bitkernel
78 32bituser := $(shell echo -e "\#include <stdio.h>\n\#if !defined(__arch64__) && !defined(_LP64)\nuserspace_is_32bit\n\#endif" | $(CC) $(CFLAGS) -E - | grep userspace_is_32bit)
79 ifdef 32bituser
80 CFLAGS+=-DIPT_MIN_ALIGN=8 -DKERNEL_64_USERSPACE_32
81 endif
82 endif
83 else
84 CFLAGS+=-D_UNKNOWN_KERNEL_POINTER_SIZE
85 endif
Rusty Russellda707152001-04-21 04:25:09 +000086endif
87
Marc Bouchere6869a82000-03-20 06:03:29 +000088ifndef IPT_LIBDIR
89IPT_LIBDIR:=$(LIBDIR)/iptables
90endif
91
Martin Josefssondc93fce2004-05-26 15:46:27 +000092ifndef NO_SHARED_LIBS
93DEPFILES = $(SHARED_LIBS:%.so=%.d)
94SH_CFLAGS:=$(CFLAGS) -fPIC
95STATIC_LIBS =
96STATIC6_LIBS =
97LDFLAGS = -rdynamic
98LDLIBS = -ldl -lnsl
99else
100DEPFILES = $(EXT_OBJS:%.o=%.d)
101STATIC_LIBS = extensions/libext.a
102STATIC6_LIBS = extensions/libext6.a
103LDFLAGS = -static
104LDLIBS =
105endif
106
Harald Welte7505d612001-07-31 13:06:17 +0000107.PHONY: default
Rusty Russell52451822000-08-27 07:47:46 +0000108default: print-extensions all
109
Harald Welte7505d612001-07-31 13:06:17 +0000110.PHONY: print-extensions
Rusty Russell52451822000-08-27 07:47:46 +0000111print-extensions:
Rusty Russellc8d7d892000-09-19 07:01:00 +0000112 @[ -n "$(OPTIONALS)" ] && echo Extensions found: $(OPTIONALS)
Marc Bouchere6869a82000-03-20 06:03:29 +0000113
114iptables.o: iptables.c
115 $(CC) $(CFLAGS) -DIPT_LIB_DIR=\"$(IPT_LIBDIR)\" -c -o $@ $<
116
Harald Welte3efb6ea2001-08-06 18:50:21 +0000117iptables: iptables-standalone.c iptables.o $(STATIC_LIBS) libiptc/libiptc.a
118 $(CC) $(CFLAGS) -DIPT_LIB_DIR=\"$(IPT_LIBDIR)\" $(LDFLAGS) -o $@ $^ $(LDLIBS)
Marc Bouchere6869a82000-03-20 06:03:29 +0000119
120$(DESTDIR)$(BINDIR)/iptables: iptables
121 @[ -d $(DESTDIR)$(BINDIR) ] || mkdir -p $(DESTDIR)$(BINDIR)
122 cp $< $@
123
Harald Welte3efb6ea2001-08-06 18:50:21 +0000124iptables-save: iptables-save.c iptables.o $(STATIC_LIBS) libiptc/libiptc.a
125 $(CC) $(CFLAGS) -DIPT_LIB_DIR=\"$(IPT_LIBDIR)\" $(LDFLAGS) -o $@ $^ $(LDLIBS)
Marc Bouchere6869a82000-03-20 06:03:29 +0000126
127$(DESTDIR)$(BINDIR)/iptables-save: iptables-save
128 @[ -d $(DESTDIR)$(BINDIR) ] || mkdir -p $(DESTDIR)$(BINDIR)
129 cp $< $@
130
Harald Welte3efb6ea2001-08-06 18:50:21 +0000131iptables-restore: iptables-restore.c iptables.o $(STATIC_LIBS) libiptc/libiptc.a
132 $(CC) $(CFLAGS) -DIPT_LIB_DIR=\"$(IPT_LIBDIR)\" $(LDFLAGS) -o $@ $^ $(LDLIBS)
Marc Bouchere6869a82000-03-20 06:03:29 +0000133
134$(DESTDIR)$(BINDIR)/iptables-restore: iptables-restore
135 @[ -d $(DESTDIR)$(BINDIR) ] || mkdir -p $(DESTDIR)$(BINDIR)
136 cp $< $@
137
Philip Blundell8c700902000-05-15 02:17:52 +0000138ip6tables.o: ip6tables.c
Harald Welte0aefbd32001-05-11 21:41:47 +0000139 $(CC) $(CFLAGS) -DIP6T_LIB_DIR=\"$(IPT_LIBDIR)\" -c -o $@ $<
Philip Blundell8c700902000-05-15 02:17:52 +0000140
Harald Welte3efb6ea2001-08-06 18:50:21 +0000141ip6tables: ip6tables-standalone.c ip6tables.o $(STATIC6_LIBS) libiptc/libiptc.a
Harald Welte2a7116e2002-08-26 13:09:40 +0000142 $(CC) $(CFLAGS) -DIP6T_LIB_DIR=\"$(IPT_LIBDIR)\" $(LDFLAGS) -o $@ $^ $(LDLIBS)
Philip Blundell8c700902000-05-15 02:17:52 +0000143
144$(DESTDIR)$(BINDIR)/ip6tables: ip6tables
145 @[ -d $(DESTDIR)$(BINDIR) ] || mkdir -p $(DESTDIR)$(BINDIR)
146 cp $< $@
147
Harald Welte3efb6ea2001-08-06 18:50:21 +0000148ip6tables-save: ip6tables-save.c ip6tables.o $(STATIC6_LIBS) libiptc/libiptc.a
Harald Welte2a7116e2002-08-26 13:09:40 +0000149 $(CC) $(CFLAGS) -DIP6T_LIB_DIR=\"$(IPT_LIBDIR)\" $(LDFLAGS) -o $@ $^ $(LDLIBS)
Philip Blundell8c700902000-05-15 02:17:52 +0000150
151$(DESTDIR)$(BINDIR)/ip6tables-save: ip6tables-save
152 @[ -d $(DESTDIR)$(BINDIR) ] || mkdir -p $(DESTDIR)$(BINDIR)
153 cp $< $@
154
Harald Welte3efb6ea2001-08-06 18:50:21 +0000155ip6tables-restore: ip6tables-restore.c ip6tables.o $(STATIC6_LIBS) libiptc/libiptc.a
Harald Welte2a7116e2002-08-26 13:09:40 +0000156 $(CC) $(CFLAGS) -DIP6T_LIB_DIR=\"$(IPT_LIBDIR)\" $(LDFLAGS) -o $@ $^ $(LDLIBS)
Philip Blundell8c700902000-05-15 02:17:52 +0000157
158$(DESTDIR)$(BINDIR)/ip6tables-restore: ip6tables-restore
159 @[ -d $(DESTDIR)$(BINDIR) ] || mkdir -p $(DESTDIR)$(BINDIR)
160 cp $< $@
161
Rusty Russell01c45202001-01-07 06:50:31 +0000162$(DESTDIR)$(MANDIR)/man8/%.8: %.8
Marc Bouchere6869a82000-03-20 06:03:29 +0000163 @[ -d $(DESTDIR)$(MANDIR)/man8 ] || mkdir -p $(DESTDIR)$(MANDIR)/man8
164 cp $< $@
165
166EXTRA_DEPENDS+=iptables-standalone.d iptables.d
167
168iptables-standalone.d iptables.d: %.d: %.c
169 @-$(CC) -M -MG $(CFLAGS) $< | sed -e 's@^.*\.o:@$*.d $*.o:@' > $@
170
Henrik Nordstromc2794132004-01-22 15:04:24 +0000171iptables.8: iptables.8.in extensions/libipt_matches.man extensions/libipt_targets.man
172 sed -e '/@MATCH@/ r extensions/libipt_matches.man' -e '/@TARGET@/ r extensions/libipt_targets.man' iptables.8.in >iptables.8
173
174ip6tables.8: ip6tables.8.in extensions/libip6t_matches.man extensions/libip6t_targets.man
175 sed -e '/@MATCH@/ r extensions/libip6t_matches.man' -e '/@TARGET@/ r extensions/libiptt_targets.man' ip6tables.8.in >ip6tables.8
James Morrisc82e9ac2000-11-24 14:34:02 +0000176
177# Development Targets
Harald Welte7505d612001-07-31 13:06:17 +0000178.PHONY: install-devel-man3
James Morrisc82e9ac2000-11-24 14:34:02 +0000179install-devel-man3: $(DEVEL_MAN3)
180 @[ -d $(DESTDIR)$(MANDIR)/man3 ] || mkdir -p $(DESTDIR)$(MANDIR)/man3
181 @cp -v $(DEVEL_MAN3) $(DESTDIR)$(MANDIR)/man3
182
Harald Welte7505d612001-07-31 13:06:17 +0000183.PHONY: install-devel-headers
James Morrisc82e9ac2000-11-24 14:34:02 +0000184install-devel-headers: $(DEVEL_HEADERS)
185 @[ -d $(DESTDIR)$(INCDIR) ] || mkdir -p $(DESTDIR)$(INCDIR)
186 @cp -v $(DEVEL_HEADERS) $(DESTDIR)$(INCDIR)
187
Harald Welte7505d612001-07-31 13:06:17 +0000188.PHONY: install-devel-libs
James Morrisc82e9ac2000-11-24 14:34:02 +0000189install-devel-libs: $(DEVEL_LIBS)
190 @[ -d $(DESTDIR)$(LIBDIR) ] || mkdir -p $(DESTDIR)$(LIBDIR)
191 @cp -v $(DEVEL_LIBS) $(DESTDIR)$(LIBDIR)
192
Harald Welte7505d612001-07-31 13:06:17 +0000193.PHONY: install-devel
James Morrisc82e9ac2000-11-24 14:34:02 +0000194install-devel: all install-devel-man3 install-devel-headers install-devel-libs
195
Harald Welte7505d612001-07-31 13:06:17 +0000196.PHONY: distclean
Rusty Russell905795c2000-04-19 11:22:03 +0000197distclean: clean
Rusty Russella470f332000-11-07 04:08:34 +0000198 @rm -f TAGS `find . -name '*~' -o -name '.*~'` `find . -name '*.rej'` `find . -name '*.d'` .makefirst
Rusty Russell175f6412000-03-24 09:32:20 +0000199
200# Rusty's distro magic.
Harald Welte7505d612001-07-31 13:06:17 +0000201.PHONY: distrib
Harald Welte80fe35d2002-05-29 13:08:15 +0000202distrib: check distclean delrelease $(RELEASE_DIR)/iptables-$(IPTABLES_VERSION).tar.bz2 diff md5sums # nowhitespace
Rusty Russell175f6412000-03-24 09:32:20 +0000203
204# Makefile must not define:
Harald Welte380ba5f2002-02-13 16:19:55 +0000205# -g -pg -DIPTC_DEBUG
Harald Welte7505d612001-07-31 13:06:17 +0000206.PHONY: check
Rusty Russell175f6412000-03-24 09:32:20 +0000207check:
Harald Welte380ba5f2002-02-13 16:19:55 +0000208 @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 +0000209
Harald Welte7505d612001-07-31 13:06:17 +0000210.PHONY: nowhitespace
Rusty Russell175f6412000-03-24 09:32:20 +0000211nowhitespace:
Rusty Russell2e5f9532001-01-07 09:37:02 +0000212 @if grep -n '[ ]$$' `find . -name 'Makefile' -o -name '*.[ch]'`; then exit 1; else exit 0; fi
Rusty Russell175f6412000-03-24 09:32:20 +0000213
Harald Welte7505d612001-07-31 13:06:17 +0000214.PHONY: delrelease
Rusty Russell175f6412000-03-24 09:32:20 +0000215delrelease:
Harald Welte80fe35d2002-05-29 13:08:15 +0000216 rm -f $(RELEASE_DIR)/iptables-$(IPTABLES_VERSION).tar.bz2
Rusty Russell175f6412000-03-24 09:32:20 +0000217
Harald Welte80fe35d2002-05-29 13:08:15 +0000218$(RELEASE_DIR)/iptables-$(IPTABLES_VERSION).tar.bz2:
Harald Welteea4ab1c2004-06-14 22:07:06 +0000219 cd .. && ln -sf iptables iptables-$(IPTABLES_VERSION) && tar cvf - --exclude CVS iptables-$(IPTABLES_VERSION)/. | bzip2 -9 > $@ && rm iptables-$(IPTABLES_VERSION)
Rusty Russell175f6412000-03-24 09:32:20 +0000220
Harald Welte7505d612001-07-31 13:06:17 +0000221.PHONY: diff
Harald Welte80fe35d2002-05-29 13:08:15 +0000222diff: $(RELEASE_DIR)/iptables-$(IPTABLES_VERSION).tar.bz2
Rusty Russell175f6412000-03-24 09:32:20 +0000223 @mkdir /tmp/diffdir
Harald Welte80fe35d2002-05-29 13:08:15 +0000224 @cd /tmp/diffdir && tar -x --bzip2 -f $(RELEASE_DIR)/iptables-$(IPTABLES_VERSION).tar.bz2
225 @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 +0000226 @rm -rf /tmp/diffdir
227
Harald Welte7505d612001-07-31 13:06:17 +0000228.PHONY: md5sums
Rusty Russell175f6412000-03-24 09:32:20 +0000229md5sums:
Harald Welte80fe35d2002-05-29 13:08:15 +0000230 cd $(RELEASE_DIR)/ && md5sum patch-iptables-*-$(IPTABLES_VERSION).bz2 iptables-$(IPTABLES_VERSION).tar.bz2
Rusty Russell175f6412000-03-24 09:32:20 +0000231
Marc Bouchere6869a82000-03-20 06:03:29 +0000232# $(wildcard) fails wierdly with make v.3.78.1.
233include $(shell echo */Makefile)
234include Rules.make