summaryrefslogtreecommitdiff
path: root/eth-multiplexer/Makefile
diff options
context:
space:
mode:
authorZheng Da <zhengda1936@gmail.com>2010-07-31 07:33:10 +0200
committerZheng Da <zhengda1936@gmail.com>2010-07-31 07:33:10 +0200
commit4f7cf90e6c8446f28c621bc9134438e41403e297 (patch)
tree35cbaa83380e123224e12d13de7fc7eae078b090 /eth-multiplexer/Makefile
parent984ad35cf434936fdf6ca11e685324bc8edf62cc (diff)
Use libbpf in eth-multiplxer.
Diffstat (limited to 'eth-multiplexer/Makefile')
-rw-r--r--eth-multiplexer/Makefile8
1 files changed, 5 insertions, 3 deletions
diff --git a/eth-multiplexer/Makefile b/eth-multiplexer/Makefile
index 72027ea8..5e44227b 100644
--- a/eth-multiplexer/Makefile
+++ b/eth-multiplexer/Makefile
@@ -20,12 +20,14 @@ makemode := server
target = eth-multiplexer
#CFLAGS += -DDEBUG
-SRCS = ethernet.c vdev.c multiplexer.c bpf_impl.c queue.c dev_stat.c netfs_impl.c notify_impl.c device_impl.c demuxer.c
+SRCS = ethernet.c vdev.c multiplexer.c queue.c dev_stat.c netfs_impl.c notify_impl.c device_impl.c demuxer.c
MIGSTUBS = ourdeviceServer.o notifyServer.o
OBJS = $(SRCS:.c=.o) $(MIGSTUBS)
-LCLHDRS = bpf_impl.h ethernet.h queue.h util.h vdev.h netfs_impl.h
+LCLHDRS = ethernet.h queue.h util.h vdev.h netfs_impl.h
DIST_FILES = ourdevice.defs notify.defs
-HURDLIBS=ports fshelp shouldbeinlibc netfs
+HURDLIBS=ports fshelp shouldbeinlibc netfs bpf
+
+CFLAGS += -I../libbpf
include ../Makeconf