diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2015-01-08 16:35:30 +0100 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2015-01-08 16:35:30 +0100 |
commit | 7e4fff2514dcb1ce0a50ec3849dbde6cc6095e82 (patch) | |
tree | 46015842592f78d56c4831e3b3beb06b5874a907 /contrib/fwd/src/Makefile | |
parent | d82b889a7bd140c8bc25129209371224f15531fb (diff) |
contrib: remove abandonned projects
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
Diffstat (limited to 'contrib/fwd/src/Makefile')
-rw-r--r-- | contrib/fwd/src/Makefile | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/contrib/fwd/src/Makefile b/contrib/fwd/src/Makefile deleted file mode 100644 index 43749124a..000000000 --- a/contrib/fwd/src/Makefile +++ /dev/null @@ -1,18 +0,0 @@ -CFLAGS := -ggdb3 -O0 -Wall -I./uci -I./iptables-1.4.5/include -LDFLAGS := -luci -liptc -lxtables -ldl -L./iptables-1.4.5/libiptc/.libs -L./iptables-1.4.5/.libs -Wl,--export-dynamic - -fwd: - $(CC) $(CFLAGS) -c -o ucix.o ucix.c - $(CC) $(CFLAGS) -c -o fwd_addr.o fwd_addr.c - $(CC) $(CFLAGS) -c -o fwd_rules.o fwd_rules.c - $(CC) $(CFLAGS) -c -o fwd_config.o fwd_config.c - $(CC) $(CFLAGS) -c -o fwd_xtables.o fwd_xtables.c - $(CC) $(CFLAGS) -c -o fwd_ipc.o fwd_ipc.c - $(CC) $(CFLAGS) -c -o fwd_utils.o fwd_utils.c - $(CC) $(CFLAGS) -c -o fwd.o fwd.c - $(CC) $(LDFLAGS) -o fwd fwd.o fwd_addr.o fwd_rules.o fwd_config.o fwd_xtables.o fwd_ipc.o fwd_utils.o ucix.o - ln -s fwd fw - -clean: - rm -f *~ fwd fw *.o - |