*** empty log message ***
This commit is contained in:
parent
b72e4840c1
commit
54c6a93a27
1 changed files with 9 additions and 9 deletions
18
Makefile
18
Makefile
|
|
@ -7,8 +7,8 @@ CC = gcc
|
||||||
DEFINES = -DBGP -DRINGBUFFER -DSTAT_CALLS -DSTATISTICS
|
DEFINES = -DBGP -DRINGBUFFER -DSTAT_CALLS -DSTATISTICS
|
||||||
OPTIM = -g -O3 -funroll-loops -fomit-frame-pointer -finline-functions
|
OPTIM = -g -O3 -funroll-loops -fomit-frame-pointer -finline-functions
|
||||||
CFLAGS = -Wall $(OPTIM) $(DEFINES)
|
CFLAGS = -Wall $(OPTIM) $(DEFINES)
|
||||||
LDFLAGS =
|
LDFLAGS = -rdynamic
|
||||||
LIBS = -lm -ldl -lcli
|
LIBS = -lm
|
||||||
INSTALL = /usr/bin/install -c
|
INSTALL = /usr/bin/install -c
|
||||||
|
|
||||||
OBJS= md5.o \
|
OBJS= md5.o \
|
||||||
|
|
@ -31,12 +31,6 @@ PLUGINS=garden.so autothrottle.so autosnoop.so
|
||||||
|
|
||||||
all: l2tpns nsctl $(PLUGINS)
|
all: l2tpns nsctl $(PLUGINS)
|
||||||
|
|
||||||
l2tpns: $(OBJS)
|
|
||||||
$(CC) $(CFLAGS) -o $@ $^ $(LIBS) $(DEFS)
|
|
||||||
|
|
||||||
nsctl: nsctl.o control.o
|
|
||||||
$(CC) $(CFLAGS) -o $@ $^ $(DEFS)
|
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
/bin/rm -f *.o *.so l2tpns nsctl
|
/bin/rm -f *.o *.so l2tpns nsctl
|
||||||
|
|
||||||
|
|
@ -61,11 +55,17 @@ install: all
|
||||||
mknod /dev/net/tun c 10 200; \
|
mknod /dev/net/tun c 10 200; \
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
l2tpns: $(OBJS)
|
||||||
|
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) $(LIBS) -lcli -ldl
|
||||||
|
|
||||||
|
nsctl: nsctl.o control.o
|
||||||
|
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) $(LIBS)
|
||||||
|
|
||||||
%.o: %.c
|
%.o: %.c
|
||||||
$(CC) -c $(CFLAGS) -o $@ $<
|
$(CC) -c $(CFLAGS) -o $@ $<
|
||||||
|
|
||||||
%.so: %.c
|
%.so: %.c
|
||||||
$(CC) -fPIC -shared $(CFLAGS) -o $@ $< $(LDFLAGS) $(LIBS) $(LIBPATH)
|
$(CC) -fPIC -shared $(CFLAGS) -o $@ $< $(LDFLAGS) $(LIBS)
|
||||||
|
|
||||||
.PHONY: all clean depend
|
.PHONY: all clean depend
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue