summaryrefslogtreecommitdiff
path: root/package/swconfig/src/Makefile
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2008-10-18 20:44:53 +0000
committerFelix Fietkau <nbd@openwrt.org>2008-10-18 20:44:53 +0000
commit487c622ac0c37f3cd26add56df9081ea7caf3835 (patch)
tree93a3d22cf39a79edfcdadb213520d920c871fdd1 /package/swconfig/src/Makefile
parentfa6b45287347380c8aa1630930fdd47edb11cd86 (diff)
downloadmtk-20170518-487c622ac0c37f3cd26add56df9081ea7caf3835.zip
mtk-20170518-487c622ac0c37f3cd26add56df9081ea7caf3835.tar.gz
mtk-20170518-487c622ac0c37f3cd26add56df9081ea7caf3835.tar.bz2
add new switch configuration api
SVN-Revision: 13009
Diffstat (limited to 'package/swconfig/src/Makefile')
-rw-r--r--package/swconfig/src/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/package/swconfig/src/Makefile b/package/swconfig/src/Makefile
new file mode 100644
index 0000000..64816af
--- /dev/null
+++ b/package/swconfig/src/Makefile
@@ -0,0 +1,12 @@
+ifndef CFLAGS
+CFLAGS = -O2 -g -I ../src
+endif
+LIBS=-lnl
+
+all: swconfig
+
+%.o: %.c
+ $(CC) $(CFLAGS) -c -o $@ $^
+
+swconfig: cli.o swlib.o
+ $(CC) $(LDFLAGS) -o $@ $^ $(LIBS)