X-Git-Url: http://git.sameswireless.fr/l2tpns.git/blobdiff_plain/ba1abbbd0588dc4f960b5e8c99d821f9784ddbea..386507e340fac189ed0d701b73ba8130272db2d5:/Makefile?ds=inline 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 $@ $<