diff options
author | Felix Fietkau <nbd@openwrt.org> | 2009-03-26 20:56:47 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2009-03-26 20:56:47 +0000 |
commit | 548478cdb24d4f588659b4e64b062aabccd76047 (patch) | |
tree | c0e8bd3d854551cb6e622246a4a9e4e7e2d57f81 /package/wprobe/src/user/Makefile | |
parent | 47abb6b3c307fe0d4845a61a2c91101218f745a1 (diff) | |
download | upstream-548478cdb24d4f588659b4e64b062aabccd76047.tar.gz upstream-548478cdb24d4f588659b4e64b062aabccd76047.tar.bz2 upstream-548478cdb24d4f588659b4e64b062aabccd76047.zip |
add wireless measurement probe infrastructure, developed at Fraunhofer FOKUS
SVN-Revision: 15050
Diffstat (limited to 'package/wprobe/src/user/Makefile')
-rw-r--r-- | package/wprobe/src/user/Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/package/wprobe/src/user/Makefile b/package/wprobe/src/user/Makefile new file mode 100644 index 0000000000..e10dfc0d24 --- /dev/null +++ b/package/wprobe/src/user/Makefile @@ -0,0 +1,21 @@ +CFLAGS = -O2 +CPPFLAGS ?= -I../kernel +WFLAGS = -Wall -Werror +LDFLAGS = + +LIBNL = -lnl +LIBM = -lm +LIBS = $(LIBNL) $(LIBM) + +all: libwprobe.a wprobe-info + +libwprobe.a: wprobe.o + rm -f $@ + $(AR) rcu $@ $^ + $(RANLIB) $@ + +%.o: %.c + $(CC) $(WFLAGS) -c -o $@ $(CPPFLAGS) $(CFLAGS) $< + +wprobe-info: wprobe-info.o wprobe.o + $(CC) -o $@ $^ $(LDFLAGS) $(LIBS) |