From 2c73b80b3ec43d852c52933ad7651be7b93740cc Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Mon, 20 Jul 2015 00:21:51 +0200 Subject: [PATCH] fixed some dependicies in the Makefile --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 0afbae7..a82e657 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -TARGETS = netem mark +TARGETS = netem mark.so OBJS = main.o probe.o emulate.o timing.o hist.o utils.o ts.o tc.o tcp.o @@ -15,12 +15,12 @@ all: $(TARGETS) Makefile netem: $(OBJS) $(CC) $(LDLIBS) -o $@ $^ -mark: mark.c +mark.so: mark.c $(CC) -g -fPIC -c -o mark.o mark.c $(CC) -shared -o mark.so mark.o -ldl clean: - rm -f $(TARGET) + rm -f $(TARGETS) rm -f *.o *~ make -C libnl clean