X-Git-Url: http://git.sameswireless.fr/l2tpns.git/blobdiff_plain/32e5db59062efd8e40d0d5360bab479ef838ebef..e98737a1683046b634692bd9e5406e53b89a65c9:/Makefile diff --git a/Makefile b/Makefile index 3fbe7db..18be310 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ etcdir = $(PREFIX)/etc/l2tpns libdir = $(PREFIX)/usr/lib/l2tpns CC = gcc -CFLAGS=-Wall -g -O2 +CFLAGS=-Wall -g -O3 -funroll-loops -fomit-frame-pointer -finline-functions LDFLAGS = LIBS = -lm -ldl -lcli INSTALL = /usr/bin/install -c @@ -60,3 +60,5 @@ install: all %.so: %.c $(CC) -fPIC -shared -o $@ $^ $(LDFLAGS) $(LIBS) $(LIBPATH) +%.o: %.c l2tpns.h + $(CC) -c -o $@ $< $(CFLAGS)