diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-10-18 20:44:53 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-10-18 20:44:53 +0000 |
commit | a662d5b130a558956875dbe259c551b632abb0f4 (patch) | |
tree | fad159c87916c32379b95fedc3dadd6e7c901537 /package/swconfig/src/Makefile | |
parent | 9d53aabe66be627b5a90b670933cce149d49612a (diff) |
add new switch configuration api
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@13009 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/swconfig/src/Makefile')
-rw-r--r-- | package/swconfig/src/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/package/swconfig/src/Makefile b/package/swconfig/src/Makefile new file mode 100644 index 0000000000..64816af541 --- /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) |