Bart De Schuymer | 1abc55d | 2002-06-01 19:23:47 +0000 | [diff] [blame] | 1 | # ebtables Makefile |
| 2 | |
Bart De Schuymer | 1abc55d | 2002-06-01 19:23:47 +0000 | [diff] [blame] | 3 | PROGNAME:=ebtables |
Bart De Schuymer | 556a0f4 | 2011-08-11 18:37:05 +0000 | [diff] [blame] | 4 | PROGRELEASE:=2 |
Bart De Schuymer | cd66633 | 2011-07-10 09:23:19 +0000 | [diff] [blame] | 5 | PROGVERSION_:=2.0.10 |
Bart De Schuymer | 865dd4d | 2006-12-15 11:37:07 +0000 | [diff] [blame] | 6 | PROGVERSION:=$(PROGVERSION_)-$(PROGRELEASE) |
Bart De Schuymer | cd66633 | 2011-07-10 09:23:19 +0000 | [diff] [blame] | 7 | PROGDATE:=July\ 2011 |
| 8 | LOCKFILE?=/var/lib/ebtables/lock |
| 9 | LOCKDIR:=$(shell echo $(LOCKFILE) | sed 's/\(.*\)\/.*/\1/')/ |
Bart De Schuymer | 1abc55d | 2002-06-01 19:23:47 +0000 | [diff] [blame] | 10 | |
Bart De Schuymer | 3749f30 | 2004-02-11 21:23:38 +0000 | [diff] [blame] | 11 | # default paths |
Bart De Schuymer | 38561e9 | 2004-02-23 09:20:42 +0000 | [diff] [blame] | 12 | LIBDIR:=/usr/lib |
Bart De Schuymer | 3749f30 | 2004-02-11 21:23:38 +0000 | [diff] [blame] | 13 | MANDIR:=/usr/local/man |
Bart De Schuymer | 838fa5b | 2005-06-18 14:43:32 +0000 | [diff] [blame] | 14 | BINDIR:=/usr/local/sbin |
Bart De Schuymer | 3749f30 | 2004-02-11 21:23:38 +0000 | [diff] [blame] | 15 | ETCDIR:=/etc |
Bart De Schuymer | 50441e9 | 2005-08-30 21:20:55 +0000 | [diff] [blame] | 16 | INITDIR:=/etc/rc.d/init.d |
| 17 | SYSCONFIGDIR:=/etc/sysconfig |
Bart De Schuymer | 38561e9 | 2004-02-23 09:20:42 +0000 | [diff] [blame] | 18 | DESTDIR:= |
Bart De Schuymer | 3749f30 | 2004-02-11 21:23:38 +0000 | [diff] [blame] | 19 | |
Bart De Schuymer | cd66633 | 2011-07-10 09:23:19 +0000 | [diff] [blame] | 20 | CFLAGS:=-Wall -Wunused -Werror |
Bart De Schuymer | 556a0f4 | 2011-08-11 18:37:05 +0000 | [diff] [blame] | 21 | CFLAGS_SH_LIB:=-fPIC -O3 |
Bart De Schuymer | 06a1b46 | 2002-09-07 11:51:13 +0000 | [diff] [blame] | 22 | CC:=gcc |
Bart De Schuymer | 3c1e00c | 2002-12-07 11:18:57 +0000 | [diff] [blame] | 23 | |
Bart De Schuymer | 60c2009 | 2003-07-23 21:34:21 +0000 | [diff] [blame] | 24 | ifeq ($(shell uname -m),sparc64) |
| 25 | CFLAGS+=-DEBT_MIN_ALIGN=8 -DKERNEL_64_USERSPACE_32 |
| 26 | endif |
| 27 | |
Bart De Schuymer | 1abc55d | 2002-06-01 19:23:47 +0000 | [diff] [blame] | 28 | include extensions/Makefile |
| 29 | |
Bart De Schuymer | 64182a3 | 2004-01-21 20:39:54 +0000 | [diff] [blame] | 30 | OBJECTS2:=getethertype.o communication.o libebtc.o \ |
Bart De Schuymer | 838fa5b | 2005-06-18 14:43:32 +0000 | [diff] [blame] | 31 | useful_functions.o ebtables.o |
Bart De Schuymer | 64182a3 | 2004-01-21 20:39:54 +0000 | [diff] [blame] | 32 | |
Bart De Schuymer | 7d9e3eb | 2006-02-06 21:24:02 +0000 | [diff] [blame] | 33 | OBJECTS:=$(OBJECTS2) $(EXT_OBJS) $(EXT_LIBS) |
Bart De Schuymer | 0f8c499 | 2002-11-20 19:41:02 +0000 | [diff] [blame] | 34 | |
Bart De Schuymer | 06a9682 | 2003-02-19 20:09:51 +0000 | [diff] [blame] | 35 | KERNEL_INCLUDES?=include/ |
Bart De Schuymer | 1abc55d | 2002-06-01 19:23:47 +0000 | [diff] [blame] | 36 | |
Bart De Schuymer | 3749f30 | 2004-02-11 21:23:38 +0000 | [diff] [blame] | 37 | ETHERTYPESPATH?=$(ETCDIR) |
Bart De Schuymer | a296038 | 2003-04-01 17:29:13 +0000 | [diff] [blame] | 38 | ETHERTYPESFILE:=$(ETHERTYPESPATH)/ethertypes |
Bart De Schuymer | 1abc55d | 2002-06-01 19:23:47 +0000 | [diff] [blame] | 39 | |
Bart De Schuymer | 0ddd575 | 2007-08-12 15:11:40 +0000 | [diff] [blame] | 40 | PIPE_DIR?=/tmp/$(PROGNAME)-v$(PROGVERSION) |
Bart De Schuymer | 6622a01 | 2005-01-19 21:09:05 +0000 | [diff] [blame] | 41 | PIPE=$(PIPE_DIR)/ebtablesd_pipe |
| 42 | EBTD_CMDLINE_MAXLN?=2048 |
| 43 | EBTD_ARGC_MAX?=50 |
| 44 | |
Bart De Schuymer | 0f8c499 | 2002-11-20 19:41:02 +0000 | [diff] [blame] | 45 | PROGSPECS:=-DPROGVERSION=\"$(PROGVERSION)\" \ |
| 46 | -DPROGNAME=\"$(PROGNAME)\" \ |
| 47 | -DPROGDATE=\"$(PROGDATE)\" \ |
Bart De Schuymer | 9d680cc | 2005-10-01 09:16:51 +0000 | [diff] [blame] | 48 | -D_PATH_ETHERTYPES=\"$(ETHERTYPESFILE)\" \ |
| 49 | -DEBTD_ARGC_MAX=$(EBTD_ARGC_MAX) \ |
Bart De Schuymer | cd66633 | 2011-07-10 09:23:19 +0000 | [diff] [blame] | 50 | -DEBTD_CMDLINE_MAXLN=$(EBTD_CMDLINE_MAXLN) \ |
| 51 | -DLOCKFILE=\"$(LOCKFILE)\" \ |
| 52 | -DLOCKDIR=\"$(LOCKDIR)\" |
Bart De Schuymer | 1abc55d | 2002-06-01 19:23:47 +0000 | [diff] [blame] | 53 | |
Bart De Schuymer | 96ee8d1 | 2005-11-04 21:59:57 +0000 | [diff] [blame] | 54 | # You can probably ignore this, ebtables{u,d} are normally not used |
Bart De Schuymer | 6622a01 | 2005-01-19 21:09:05 +0000 | [diff] [blame] | 55 | PROGSPECSD:=-DPROGVERSION=\"$(PROGVERSION)\" \ |
| 56 | -DPROGNAME=\"$(PROGNAME)\" \ |
| 57 | -DPROGDATE=\"$(PROGDATE)\" \ |
| 58 | -D_PATH_ETHERTYPES=\"$(ETHERTYPESFILE)\" \ |
| 59 | -DEBTD_CMDLINE_MAXLN=$(EBTD_CMDLINE_MAXLN) \ |
| 60 | -DEBTD_ARGC_MAX=$(EBTD_ARGC_MAX) \ |
| 61 | -DEBTD_PIPE=\"$(PIPE)\" \ |
| 62 | -DEBTD_PIPE_DIR=\"$(PIPE_DIR)\" |
Bart De Schuymer | 0f8c499 | 2002-11-20 19:41:02 +0000 | [diff] [blame] | 63 | |
Bart De Schuymer | 838fa5b | 2005-06-18 14:43:32 +0000 | [diff] [blame] | 64 | # Uncomment for debugging (slower) |
| 65 | #PROGSPECS+=-DEBT_DEBUG |
| 66 | #PROGSPECSD+=-DEBT_DEBUG |
Bart De Schuymer | 96ee8d1 | 2005-11-04 21:59:57 +0000 | [diff] [blame] | 67 | #CFLAGS+=-ggdb |
Bart De Schuymer | 838fa5b | 2005-06-18 14:43:32 +0000 | [diff] [blame] | 68 | |
Bart De Schuymer | 96ee8d1 | 2005-11-04 21:59:57 +0000 | [diff] [blame] | 69 | all: ebtables ebtables-restore |
Bart De Schuymer | 1abc55d | 2002-06-01 19:23:47 +0000 | [diff] [blame] | 70 | |
| 71 | communication.o: communication.c include/ebtables_u.h |
Bart De Schuymer | 17c60f5 | 2006-12-14 18:55:44 +0000 | [diff] [blame] | 72 | $(CC) $(CFLAGS) $(CFLAGS_SH_LIB) $(PROGSPECS) -c -o $@ $< -I$(KERNEL_INCLUDES) |
Bart De Schuymer | 0f8c499 | 2002-11-20 19:41:02 +0000 | [diff] [blame] | 73 | |
Bart De Schuymer | 8339ff1 | 2004-01-14 20:05:27 +0000 | [diff] [blame] | 74 | libebtc.o: libebtc.c include/ebtables_u.h |
Bart De Schuymer | 17c60f5 | 2006-12-14 18:55:44 +0000 | [diff] [blame] | 75 | $(CC) $(CFLAGS) $(CFLAGS_SH_LIB) $(PROGSPECS) -c -o $@ $< -I$(KERNEL_INCLUDES) |
Bart De Schuymer | 8339ff1 | 2004-01-14 20:05:27 +0000 | [diff] [blame] | 76 | |
| 77 | useful_functions.o: useful_functions.c include/ebtables_u.h |
Bart De Schuymer | 17c60f5 | 2006-12-14 18:55:44 +0000 | [diff] [blame] | 78 | $(CC) $(CFLAGS) $(CFLAGS_SH_LIB) $(PROGSPECS) -c -o $@ $< -I$(KERNEL_INCLUDES) |
Bart De Schuymer | 8339ff1 | 2004-01-14 20:05:27 +0000 | [diff] [blame] | 79 | |
Bart De Schuymer | 0f8c499 | 2002-11-20 19:41:02 +0000 | [diff] [blame] | 80 | getethertype.o: getethertype.c include/ethernetdb.h |
Bart De Schuymer | 17c60f5 | 2006-12-14 18:55:44 +0000 | [diff] [blame] | 81 | $(CC) $(CFLAGS) $(CFLAGS_SH_LIB) $(PROGSPECS) -c -o $@ $< -Iinclude/ |
Bart De Schuymer | 1abc55d | 2002-06-01 19:23:47 +0000 | [diff] [blame] | 82 | |
| 83 | ebtables.o: ebtables.c include/ebtables_u.h |
Bart De Schuymer | eacf5c9 | 2007-07-03 17:48:53 +0000 | [diff] [blame] | 84 | $(CC) $(CFLAGS) $(CFLAGS_SH_LIB) $(PROGSPECS) -c -o $@ $< -I$(KERNEL_INCLUDES) |
Bart De Schuymer | 1abc55d | 2002-06-01 19:23:47 +0000 | [diff] [blame] | 85 | |
Bart De Schuymer | 838fa5b | 2005-06-18 14:43:32 +0000 | [diff] [blame] | 86 | ebtables-standalone.o: ebtables-standalone.c include/ebtables_u.h |
Bart De Schuymer | eacf5c9 | 2007-07-03 17:48:53 +0000 | [diff] [blame] | 87 | $(CC) $(CFLAGS) $(CFLAGS_SH_LIB) $(PROGSPECS) -c $< -o $@ -I$(KERNEL_INCLUDES) |
Bart De Schuymer | 6622a01 | 2005-01-19 21:09:05 +0000 | [diff] [blame] | 88 | |
Bart De Schuymer | cc17a41 | 2011-06-19 11:35:21 +0000 | [diff] [blame] | 89 | libebtc.so: $(OBJECTS2) |
Bart De Schuymer | 078161d | 2010-03-16 13:10:37 +0000 | [diff] [blame] | 90 | $(CC) -shared $(LDFLAGS) -Wl,-soname,libebtc.so -o libebtc.so -lc $(OBJECTS2) |
Bart De Schuymer | 838fa5b | 2005-06-18 14:43:32 +0000 | [diff] [blame] | 91 | |
Bart De Schuymer | cc17a41 | 2011-06-19 11:35:21 +0000 | [diff] [blame] | 92 | ebtables: $(OBJECTS) ebtables-standalone.o libebtc.so |
Bart De Schuymer | 078161d | 2010-03-16 13:10:37 +0000 | [diff] [blame] | 93 | $(CC) $(CFLAGS) $(CFLAGS_SH_LIB) $(LDFLAGS) -o $@ ebtables-standalone.o -I$(KERNEL_INCLUDES) -L. -Lextensions -lebtc $(EXT_LIBSI) \ |
Bart De Schuymer | 838fa5b | 2005-06-18 14:43:32 +0000 | [diff] [blame] | 94 | -Wl,-rpath,$(LIBDIR) |
Bart De Schuymer | 6622a01 | 2005-01-19 21:09:05 +0000 | [diff] [blame] | 95 | |
| 96 | ebtablesu: ebtablesu.c |
| 97 | $(CC) $(CFLAGS) $(PROGSPECSD) $< -o $@ |
| 98 | |
Bart De Schuymer | 838fa5b | 2005-06-18 14:43:32 +0000 | [diff] [blame] | 99 | ebtablesd.o: ebtablesd.c include/ebtables_u.h |
| 100 | $(CC) $(CFLAGS) $(PROGSPECSD) -c $< -o $@ -I$(KERNEL_INCLUDES) |
Bart De Schuymer | 6622a01 | 2005-01-19 21:09:05 +0000 | [diff] [blame] | 101 | |
Bart De Schuymer | cc17a41 | 2011-06-19 11:35:21 +0000 | [diff] [blame] | 102 | ebtablesd: $(OBJECTS) ebtablesd.o libebtc.so |
Bart De Schuymer | 838fa5b | 2005-06-18 14:43:32 +0000 | [diff] [blame] | 103 | $(CC) $(CFLAGS) -o $@ ebtablesd.o -I$(KERNEL_INCLUDES) -L. -Lextensions -lebtc $(EXT_LIBSI) \ |
| 104 | -Wl,-rpath,$(LIBDIR) |
Bart De Schuymer | 6622a01 | 2005-01-19 21:09:05 +0000 | [diff] [blame] | 105 | |
Bart De Schuymer | 90db00b | 2005-09-28 19:36:34 +0000 | [diff] [blame] | 106 | ebtables-restore.o: ebtables-restore.c include/ebtables_u.h |
Bart De Schuymer | 9d680cc | 2005-10-01 09:16:51 +0000 | [diff] [blame] | 107 | $(CC) $(CFLAGS) $(PROGSPECS) -c $< -o $@ -I$(KERNEL_INCLUDES) |
Bart De Schuymer | 90db00b | 2005-09-28 19:36:34 +0000 | [diff] [blame] | 108 | |
Bart De Schuymer | cc17a41 | 2011-06-19 11:35:21 +0000 | [diff] [blame] | 109 | ebtables-restore: $(OBJECTS) ebtables-restore.o libebtc.so |
Bart De Schuymer | 078161d | 2010-03-16 13:10:37 +0000 | [diff] [blame] | 110 | $(CC) $(CFLAGS) $(LDFLAGS) -o $@ ebtables-restore.o -I$(KERNEL_INCLUDES) -L. -Lextensions -lebtc $(EXT_LIBSI) \ |
Bart De Schuymer | 90db00b | 2005-09-28 19:36:34 +0000 | [diff] [blame] | 111 | -Wl,-rpath,$(LIBDIR) |
| 112 | |
Bart De Schuymer | 6622a01 | 2005-01-19 21:09:05 +0000 | [diff] [blame] | 113 | .PHONY: daemon |
| 114 | daemon: ebtablesd ebtablesu |
| 115 | |
Bart De Schuymer | 7d9e3eb | 2006-02-06 21:24:02 +0000 | [diff] [blame] | 116 | # a little scripting for a static binary, making one for ebtables-restore |
| 117 | # should be completely analogous |
| 118 | static: extensions/ebt_*.c extensions/ebtable_*.c ebtables.c communication.c ebtables-standalone.c getethertype.c libebtc.c useful_functions.c |
| 119 | cp ebtables-standalone.c ebtables-standalone.c_ ; \ |
| 120 | cp include/ebtables_u.h include/ebtables_u.h_ ; \ |
| 121 | sed "s/ main(/ pseudomain(/" ebtables-standalone.c > ebtables-standalone.c__ ; \ |
| 122 | mv ebtables-standalone.c__ ebtables-standalone.c ; \ |
| 123 | printf "\nint main(int argc, char *argv[])\n{\n " >> ebtables-standalone.c ; \ |
| 124 | for arg in $(EXT_FUNC) \ |
| 125 | ; do \ |
| 126 | sed s/_init/_$${arg}_init/ extensions/ebt_$${arg}.c > extensions/ebt_$${arg}.c_ ; \ |
| 127 | mv extensions/ebt_$${arg}.c_ extensions/ebt_$${arg}.c ; \ |
| 128 | printf "\t%s();\n" _$${arg}_init >> ebtables-standalone.c ; \ |
| 129 | printf "extern void %s();\n" _$${arg}_init >> include/ebtables_u.h ; \ |
| 130 | done ; \ |
| 131 | for arg in $(EXT_TABLES) \ |
| 132 | ; do \ |
| 133 | sed s/_init/_t_$${arg}_init/ extensions/ebtable_$${arg}.c > extensions/ebtable_$${arg}.c_ ; \ |
| 134 | mv extensions/ebtable_$${arg}.c_ extensions/ebtable_$${arg}.c ; \ |
| 135 | printf "\t%s();\n" _t_$${arg}_init >> ebtables-standalone.c ; \ |
| 136 | printf "extern void %s();\n" _t_$${arg}_init >> include/ebtables_u.h ; \ |
| 137 | done ; \ |
| 138 | printf "\n\tpseudomain(argc, argv);\n\treturn 0;\n}\n" >> ebtables-standalone.c ;\ |
Bart De Schuymer | 0f9c501 | 2011-08-11 18:47:17 +0000 | [diff] [blame^] | 139 | $(CC) $(CFLAGS) $(LDFLAGS) $(PROGSPECS) -o $@ $^ -I$(KERNEL_INCLUDES) -Iinclude ; \ |
Bart De Schuymer | 7d9e3eb | 2006-02-06 21:24:02 +0000 | [diff] [blame] | 140 | for arg in $(EXT_FUNC) \ |
| 141 | ; do \ |
| 142 | sed "s/ .*_init/ _init/" extensions/ebt_$${arg}.c > extensions/ebt_$${arg}.c_ ; \ |
| 143 | mv extensions/ebt_$${arg}.c_ extensions/ebt_$${arg}.c ; \ |
| 144 | done ; \ |
| 145 | for arg in $(EXT_TABLES) \ |
| 146 | ; do \ |
| 147 | sed "s/ .*_init/ _init/" extensions/ebtable_$${arg}.c > extensions/ebtable_$${arg}.c_ ; \ |
| 148 | mv extensions/ebtable_$${arg}.c_ extensions/ebtable_$${arg}.c ; \ |
| 149 | done ; \ |
| 150 | mv ebtables-standalone.c_ ebtables-standalone.c ; \ |
| 151 | mv include/ebtables_u.h_ include/ebtables_u.h |
| 152 | |
Bart De Schuymer | 50441e9 | 2005-08-30 21:20:55 +0000 | [diff] [blame] | 153 | tmp1:=$(shell printf $(BINDIR) | sed 's/\//\\\//g') |
| 154 | tmp2:=$(shell printf $(SYSCONFIGDIR) | sed 's/\//\\\//g') |
Bart De Schuymer | db97ab2 | 2005-09-01 20:37:07 +0000 | [diff] [blame] | 155 | tmp3:=$(shell printf $(PIPE) | sed 's/\//\\\//g') |
Bart De Schuymer | 50441e9 | 2005-08-30 21:20:55 +0000 | [diff] [blame] | 156 | .PHONY: scripts |
Bart De Schuymer | 90db00b | 2005-09-28 19:36:34 +0000 | [diff] [blame] | 157 | scripts: ebtables-save ebtables.sysv ebtables-config |
Bart De Schuymer | 50441e9 | 2005-08-30 21:20:55 +0000 | [diff] [blame] | 158 | cat ebtables-save | sed 's/__EXEC_PATH__/$(tmp1)/g' > ebtables-save_ |
Bart De Schuymer | 2320f8b | 2010-03-16 13:00:37 +0000 | [diff] [blame] | 159 | mkdir -p $(DESTDIR)$(BINDIR) |
Bart De Schuymer | 0ddd575 | 2007-08-12 15:11:40 +0000 | [diff] [blame] | 160 | install -m 0755 -o root -g root ebtables-save_ $(DESTDIR)$(BINDIR)/ebtables-save |
Bart De Schuymer | db97ab2 | 2005-09-01 20:37:07 +0000 | [diff] [blame] | 161 | cat ebtables.sysv | sed 's/__EXEC_PATH__/$(tmp1)/g' | sed 's/__SYSCONFIG__/$(tmp2)/g' > ebtables.sysv_ |
Bart De Schuymer | 4eba2d4 | 2010-03-18 08:58:44 +0000 | [diff] [blame] | 162 | if [ "$(DESTDIR)" != "" ]; then mkdir -p $(DESTDIR)$(INITDIR); fi |
Bart De Schuymer | 2320f8b | 2010-03-16 13:00:37 +0000 | [diff] [blame] | 163 | if test -d $(DESTDIR)$(INITDIR); then install -m 0755 -o root -g root ebtables.sysv_ $(DESTDIR)$(INITDIR)/ebtables; fi |
Bart De Schuymer | 9336b5a | 2005-11-04 22:01:23 +0000 | [diff] [blame] | 164 | cat ebtables-config | sed 's/__SYSCONFIG__/$(tmp2)/g' > ebtables-config_ |
Bart De Schuymer | 4eba2d4 | 2010-03-18 08:58:44 +0000 | [diff] [blame] | 165 | if [ "$(DESTDIR)" != "" ]; then mkdir -p $(DESTDIR)$(SYSCONFIGDIR); fi |
Bart De Schuymer | 2320f8b | 2010-03-16 13:00:37 +0000 | [diff] [blame] | 166 | if test -d $(DESTDIR)$(SYSCONFIGDIR); then install -m 0600 -o root -g root ebtables-config_ $(DESTDIR)$(SYSCONFIGDIR)/ebtables-config; fi |
Bart De Schuymer | 90db00b | 2005-09-28 19:36:34 +0000 | [diff] [blame] | 167 | rm -f ebtables-save_ ebtables.sysv_ ebtables-config_ |
Bart De Schuymer | 50441e9 | 2005-08-30 21:20:55 +0000 | [diff] [blame] | 168 | |
Bart De Schuymer | cd66633 | 2011-07-10 09:23:19 +0000 | [diff] [blame] | 169 | tmp4:=$(shell printf $(LOCKFILE) | sed 's/\//\\\//g') |
Bart De Schuymer | 1abc55d | 2002-06-01 19:23:47 +0000 | [diff] [blame] | 170 | $(MANDIR)/man8/ebtables.8: ebtables.8 |
Bart De Schuymer | 0ddd575 | 2007-08-12 15:11:40 +0000 | [diff] [blame] | 171 | mkdir -p $(DESTDIR)$(@D) |
Bart De Schuymer | cd66633 | 2011-07-10 09:23:19 +0000 | [diff] [blame] | 172 | sed -e 's/$$(VERSION)/$(PROGVERSION)/' -e 's/$$(DATE)/$(PROGDATE)/' -e 's/$$(LOCKFILE)/$(tmp4)/' ebtables.8 > ebtables.8_ |
Bart De Schuymer | 0ddd575 | 2007-08-12 15:11:40 +0000 | [diff] [blame] | 173 | install -m 0644 -o root -g root ebtables.8_ $(DESTDIR)$@ |
Bart De Schuymer | 865dd4d | 2006-12-15 11:37:07 +0000 | [diff] [blame] | 174 | rm -f ebtables.8_ |
Bart De Schuymer | 1abc55d | 2002-06-01 19:23:47 +0000 | [diff] [blame] | 175 | |
Bart De Schuymer | 2320f8b | 2010-03-16 13:00:37 +0000 | [diff] [blame] | 176 | $(DESTDIR)$(ETHERTYPESFILE): ethertypes |
| 177 | mkdir -p $(@D) |
| 178 | install -m 0644 -o root -g root $< $@ |
Bart De Schuymer | 0f8c499 | 2002-11-20 19:41:02 +0000 | [diff] [blame] | 179 | |
Bart De Schuymer | 3289054 | 2002-07-10 20:09:56 +0000 | [diff] [blame] | 180 | .PHONY: exec |
Bart De Schuymer | 90db00b | 2005-09-28 19:36:34 +0000 | [diff] [blame] | 181 | exec: ebtables ebtables-restore |
Bart De Schuymer | 0ddd575 | 2007-08-12 15:11:40 +0000 | [diff] [blame] | 182 | mkdir -p $(DESTDIR)$(BINDIR) |
| 183 | install -m 0755 -o root -g root $(PROGNAME) $(DESTDIR)$(BINDIR)/$(PROGNAME) |
| 184 | install -m 0755 -o root -g root ebtables-restore $(DESTDIR)$(BINDIR)/ebtables-restore |
Bart De Schuymer | 1abc55d | 2002-06-01 19:23:47 +0000 | [diff] [blame] | 185 | |
Bart De Schuymer | 0f8c499 | 2002-11-20 19:41:02 +0000 | [diff] [blame] | 186 | .PHONY: install |
Bart De Schuymer | 2320f8b | 2010-03-16 13:00:37 +0000 | [diff] [blame] | 187 | install: $(MANDIR)/man8/ebtables.8 $(DESTDIR)$(ETHERTYPESFILE) exec scripts |
Bart De Schuymer | 0ddd575 | 2007-08-12 15:11:40 +0000 | [diff] [blame] | 188 | mkdir -p $(DESTDIR)$(LIBDIR) |
| 189 | install -m 0755 extensions/*.so $(DESTDIR)$(LIBDIR) |
| 190 | install -m 0755 *.so $(DESTDIR)$(LIBDIR) |
Bart De Schuymer | 1abc55d | 2002-06-01 19:23:47 +0000 | [diff] [blame] | 191 | |
Bart De Schuymer | 0f8c499 | 2002-11-20 19:41:02 +0000 | [diff] [blame] | 192 | .PHONY: clean |
Bart De Schuymer | 1abc55d | 2002-06-01 19:23:47 +0000 | [diff] [blame] | 193 | clean: |
Bart De Schuymer | 7d9e3eb | 2006-02-06 21:24:02 +0000 | [diff] [blame] | 194 | rm -f ebtables ebtables-restore ebtablesd ebtablesu static |
Bart De Schuymer | 90db00b | 2005-09-28 19:36:34 +0000 | [diff] [blame] | 195 | rm -f *.o *~ *.so |
Bart De Schuymer | 96ee8d1 | 2005-11-04 21:59:57 +0000 | [diff] [blame] | 196 | rm -f extensions/*.o extensions/*.c~ extensions/*.so include/*~ |
Bart De Schuymer | 0f8c499 | 2002-11-20 19:41:02 +0000 | [diff] [blame] | 197 | |
| 198 | DIR:=$(PROGNAME)-v$(PROGVERSION) |
Bart De Schuymer | 22d8f5f | 2007-05-28 16:45:38 +0000 | [diff] [blame] | 199 | CVSDIRS:=CVS extensions/CVS examples/CVS examples/perf_test/CVS \ |
| 200 | examples/ulog/CVS include/CVS |
Bart De Schuymer | 865dd4d | 2006-12-15 11:37:07 +0000 | [diff] [blame] | 201 | # This is used to make a new userspace release, some files are altered so |
| 202 | # do this on a temporary version |
Bart De Schuymer | 0f8c499 | 2002-11-20 19:41:02 +0000 | [diff] [blame] | 203 | .PHONY: release |
| 204 | release: |
Bart De Schuymer | 22d8f5f | 2007-05-28 16:45:38 +0000 | [diff] [blame] | 205 | rm -f extensions/ebt_inat.c |
| 206 | rm -rf $(CVSDIRS) |
Bart De Schuymer | 0f8c499 | 2002-11-20 19:41:02 +0000 | [diff] [blame] | 207 | mkdir -p include/linux/netfilter_bridge |
| 208 | install -m 0644 -o root -g root \ |
| 209 | $(KERNEL_INCLUDES)/linux/netfilter_bridge.h include/linux/ |
| 210 | # To keep possible compile error complaints about undefined ETH_P_8021Q |
| 211 | # off my back |
| 212 | install -m 0644 -o root -g root \ |
| 213 | $(KERNEL_INCLUDES)/linux/if_ether.h include/linux/ |
| 214 | install -m 0644 -o root -g root \ |
Bart De Schuymer | 72ecebe | 2006-12-17 21:29:34 +0000 | [diff] [blame] | 215 | $(KERNEL_INCLUDES)/linux/types.h include/linux/ |
| 216 | install -m 0644 -o root -g root \ |
Bart De Schuymer | 0f8c499 | 2002-11-20 19:41:02 +0000 | [diff] [blame] | 217 | $(KERNEL_INCLUDES)/linux/netfilter_bridge/*.h \ |
| 218 | include/linux/netfilter_bridge/ |
Bart De Schuymer | 60c2009 | 2003-07-23 21:34:21 +0000 | [diff] [blame] | 219 | install -m 0644 -o root -g root \ |
| 220 | include/ebtables.h include/linux/netfilter_bridge/ |
Bart De Schuymer | 0f8c499 | 2002-11-20 19:41:02 +0000 | [diff] [blame] | 221 | make clean |
Bart De Schuymer | e29506d | 2003-07-26 11:53:32 +0000 | [diff] [blame] | 222 | touch * |
| 223 | touch extensions/* |
| 224 | touch include/* |
| 225 | touch include/linux/* |
| 226 | touch include/linux/netfilter_bridge/* |
Bart De Schuymer | cd66633 | 2011-07-10 09:23:19 +0000 | [diff] [blame] | 227 | sed -i -e 's/$$(VERSION)/$(PROGVERSION)/' -e 's/$$(DATE)/$(PROGDATE)/' -e 's/$$(LOCKFILE)/$(tmp4)/' ebtables.8 |
| 228 | sed -i -e 's/$$(VERSION)/$(PROGVERSION_)/' -e 's/$$(RELEASE)/$(PROGRELEASE)/' ebtables.spec |
Bart De Schuymer | 308ea9f | 2005-11-13 12:15:09 +0000 | [diff] [blame] | 229 | cd ..;tar -c $(DIR) | gzip >$(DIR).tar.gz; cd - |
| 230 | rm -rf include/linux |
| 231 | |
| 232 | # This will make the rpm and put it in /usr/src/redhat/RPMS |
| 233 | # (do this as root after make release) |
| 234 | .PHONY: rpmbuild |
| 235 | rpmbuild: |
| 236 | cp ../$(DIR).tar.gz /usr/src/redhat/SOURCES/ |
Bart De Schuymer | 58acf95 | 2005-11-13 12:23:13 +0000 | [diff] [blame] | 237 | rpmbuild --buildroot $(shell mktemp -td $(DIR)-XXXXX) -bb ebtables.spec |
Bart De Schuymer | 8bde101 | 2004-11-20 13:00:52 +0000 | [diff] [blame] | 238 | |
| 239 | .PHONY: test_ulog |
| 240 | test_ulog: examples/ulog/test_ulog.c getethertype.o |
| 241 | $(CC) $(CFLAGS) $< -o test_ulog -I$(KERNEL_INCLUDES) -lc \ |
| 242 | getethertype.o |
| 243 | mv test_ulog examples/ulog/ |
| 244 | |
| 245 | .PHONY: examples |
| 246 | examples: test_ulog |