projects
/
l2tpns.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (from parent 1:
b72e484
)
*** empty log message ***
author
Brendan O'Dea
<bod@optus.net>
Mon, 12 Jul 2004 14:49:01 +0000
(14:49 +0000)
committer
Brendan O'Dea
<bod@optus.net>
Mon, 12 Jul 2004 14:49:01 +0000
(14:49 +0000)
Makefile
patch
|
blob
|
history
diff --git
a/Makefile
b/Makefile
index
e3b7855
..
6cdd6fe
100644
(file)
--- a/
Makefile
+++ b/
Makefile
@@
-7,8
+7,8
@@
CC = gcc
DEFINES = -DBGP -DRINGBUFFER -DSTAT_CALLS -DSTATISTICS
OPTIM = -g -O3 -funroll-loops -fomit-frame-pointer -finline-functions
CFLAGS = -Wall $(OPTIM) $(DEFINES)
DEFINES = -DBGP -DRINGBUFFER -DSTAT_CALLS -DSTATISTICS
OPTIM = -g -O3 -funroll-loops -fomit-frame-pointer -finline-functions
CFLAGS = -Wall $(OPTIM) $(DEFINES)
-LDFLAGS =
-LIBS = -lm
-ldl -lcli
+LDFLAGS =
-rdynamic
+LIBS = -lm
INSTALL = /usr/bin/install -c
OBJS= md5.o \
INSTALL = /usr/bin/install -c
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:
/bin/rm -f *.o *.so l2tpns nsctl
clean:
/bin/rm -f *.o *.so l2tpns nsctl
@@
-61,11
+55,17
@@
install: all
mknod /dev/net/tun c 10 200; \
fi
mknod /dev/net/tun c 10 200; \
fi
+l2tpns: $(OBJS)
+ $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) $(LIBS) -lcli -ldl
+
+nsctl: nsctl.o control.o
+ $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) $(LIBS)
+
%.o: %.c
$(CC) -c $(CFLAGS) -o $@ $<
%.so: %.c
%.o: %.c
$(CC) -c $(CFLAGS) -o $@ $<
%.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