From: fred_nerk Date: Thu, 2 Sep 2004 04:22:30 +0000 (+0000) Subject: Sync X-Git-Tag: release_2_0_2~6 X-Git-Url: http://git.sameswireless.fr/l2tpns.git/commitdiff_plain/386507e340fac189ed0d701b73ba8130272db2d5 Sync --- diff --git a/Makefile b/Makefile index b9007fa..9cad50b 100644 --- a/Makefile +++ b/Makefile @@ -29,7 +29,7 @@ OBJS= md5.o \ PLUGINS=garden.so autothrottle.so autosnoop.so -all: l2tpns nsctl $(PLUGINS) +all: l2tpns nsctl generateload bounce $(PLUGINS) clean: /bin/rm -f *.o *.so l2tpns nsctl @@ -74,6 +74,12 @@ l2tpns: $(OBJS) nsctl: nsctl.o control.o $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) $(LIBS) +generateload: test/generateload.o + $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) $(LIBS) + +bounce: test/bounce.o + $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) $(LIBS) + %.o: %.c $(CC) -c $(CFLAGS) -o $@ $<