X-Git-Url: http://git.sameswireless.fr/l2tpns.git/blobdiff_plain/7cf822a64f5e28285b961bd75693ad9a7f63e47e..1c08f2bf3b87926bd0fc53ad0be1ce9f26f48c3d:/Makefile diff --git a/Makefile b/Makefile index 8ac1656..156ff39 100644 --- a/Makefile +++ b/Makefile @@ -32,22 +32,23 @@ PROGRAMS = l2tpns nsctl PLUGINS = autosnoop.so autothrottle.so garden.so sessionctl.so \ setrxspeed.so snoopctl.so stripdomain.so throttlectl.so -TESTS = generateload bounce - DEFINES += -DSTATISTICS DEFINES += -DSTAT_CALLS DEFINES += -DRINGBUFFER +ifneq (2.4, $(shell uname -r | perl -pe 's/^(\d+\.\d+).*/$$1/')) + DEFINES += -DHAVE_EPOLL +endif + DEFINES += -DBGP OBJS += bgp.o -all: programs plugins tests +all: programs plugins programs: $(PROGRAMS) plugins: $(PLUGINS) -tests: $(TESTS) clean: - rm -f *.o test/*.o $(PROGRAMS) $(PLUGINS) $(TESTS) Makefile.tmp Makefile.bak + rm -f *.o test/*.o $(PROGRAMS) $(PLUGINS) Makefile.tmp Makefile.bak depend: (sed -n 'p; /^## Dependencies: (autogenerated) ##/q' Makefile && \ @@ -62,12 +63,6 @@ l2tpns: $(OBJS) nsctl: nsctl.o control.o $(LD) $(LDFLAGS) -o $@ $^ $(LDLIBS) $($@.LIBS) -generateload: test/generateload.o - $(LD) $(LDFLAGS) -o $@ $^ $(LDLIBS) $($@.LIBS) - -bounce: test/bounce.o - $(LD) $(LDFLAGS) -o $@ $^ $(LDLIBS) $($@.LIBS) - %.o: %.c $(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<