From d22cd0195d4d27efc01deba705351a46d9893628 Mon Sep 17 00:00:00 2001 From: sven-ola Date: Fri, 1 Oct 2010 06:54:47 +0000 Subject: Transfer from freifunk-firmware to new SF project git-svn-id: https://map66.svn.sourceforge.net/svnroot/map66@1 3484d885-4da6-438d-b19d-107d078dd756 --- Makefile | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..a3f5a2c --- /dev/null +++ b/Makefile @@ -0,0 +1,24 @@ +obj-m := ip6t_MAP66.o +KVERSION := $(shell uname -r) +KPATH := /lib/modules/$(KVERSION)/build +IPTABLES_VERSION := $(shell ip6tables --version|sed 's/^.*\([[:digit:]]\+\.[[:digit:]]\+\.[[:digit:]]\+\).*/\1/') +IPTABLES_VERSION_CODE := $(shell echo $$(( $$(echo $(IPTABLES_VERSION)|sed 's/^.*\([[:digit:]]\+\)\.\([[:digit:]]\+\)\.\([[:digit:]]\+\).*/\1 * 65536 + \2 * 256 + \3/') ))) + +all: libip6t_MAP66.so + $(MAKE) -C $(KPATH) M=$(PWD) modules + +libip6t_MAP66.so: libip6t_MAP66.o + gcc -shared -o $@ $< + +libip6t_MAP66.o: libip6t_MAP66.c ip6t_MAP66.h Makefile + gcc $(CFLAGS) -DIPTABLES_VERSION=\"$(IPTABLES_VERSION)\" -DIPTABLES_VERSION_CODE=$(IPTABLES_VERSION_CODE) -D_LARGEFILE_SOURCE=1 -D_LARGE_FILES -D_FILE_OFFSET_BITS=64 -D_REENTRANT -Werror -Wall -Waggregate-return -Wmissing-declarations -Wmissing-prototypes -Wredundant-decls -Wshadow -Winline -pipe -DXTABLES_LIBDIR=\"/usr/local/libexec/xtables\" -D_INIT=libip6t_MAP66_init -DPIC -fPIC -g -O2 -o $@ -c $< + +clean: + $(MAKE) -C /lib/modules/$(KVERSION)/build M=$(PWD) clean + rm -f *.so + rm -f *~ + +install: /lib/xtables/libip6t_MAP66.so + +/lib/xtables/libip6t_MAP66.so: libip6t_MAP66.so + cp $< $@ -- cgit v1.2.3