warp-vpn

point to point VPN implementation
git clone git://git.2f30.org/warp-vpn
Log | Files | Refs | README

commit ab794f62a0062dd0537381043c26e12bdabee206
parent fa31cd37574311ccb8c247c3458176932e32099e
Author: sin <sin@2f30.org>
Date:   Tue, 12 Apr 2016 17:18:43 +0100

makefile style fix

Diffstat:
MMakefile | 38+++++++++++++++++++++++++++++++++-----
1 file changed, 33 insertions(+), 5 deletions(-)

diff --git a/Makefile b/Makefile @@ -1,10 +1,38 @@ include config.mk -DISTFILES = Makefile README WHATSNEW UNLICENSE arg.h auth.c \ - client.c config.mk crypto.c dev_bsd.c dev_linux.c log.c \ - netpkt.c server.c stun.8 stun.c stun.h tunnel.c util.c -OBJ = $(EXTRAOBJ) auth.o client.o crypto.o log.o netpkt.o server.o \ - stun.o tunnel.o util.o +DISTFILES = \ + Makefile \ + README \ + WHATSNEW \ + UNLICENSE \ + arg.h \ + auth.c \ + client.c \ + config.mk \ + crypto.c \ + dev_bsd.c \ + dev_linux.c \ + log.c \ + netpkt.c \ + server.c \ + stun.8 \ + stun.c \ + stun.h \ + tunnel.c \ + util.c + +OBJ = \ + $(EXTRAOBJ) \ + auth.o \ + client.o \ + crypto.o \ + log.o \ + netpkt.o \ + server.o \ + stun.o \ + tunnel.o \ + util.o + BIN = stun all: $(BIN)