X-Git-Url: https://git.distorted.org.uk/~mdw/userv-utils/blobdiff_plain/12ecfeababafbe0949a3587a29364058a7bdad41..84f87e82eb7ab4fb0bb39d5d9800b740d528e6c9:/ipif/Makefile diff --git a/ipif/Makefile b/ipif/Makefile index 643f1e8..8d0bd72 100644 --- a/ipif/Makefile +++ b/ipif/Makefile @@ -14,7 +14,7 @@ # along with userv-utils; if not, write to the Free Software # Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # -# $Id: Makefile,v 1.9 1999/11/09 22:35:41 ian Exp $ +# $Id: Makefile,v 1.10 2000/05/29 17:16:29 ian Exp $ OPTIMISE= -O2 CFLAGS= -Wall -Wmissing-prototypes -Wstrict-prototypes -Wpointer-arith \ @@ -30,7 +30,12 @@ libuserv= $(libdir)/userv etcuserv= $(etcdir)/userv services= $(etcuserv)/services.d -TARGETS= service +TARGETS= service udptunnel-forwarder + +MECHFILES= null pkcs5 timestamp sequence blowfish +MECHOBJS= $(foreach m, $(MECHFILES), mech-$m.o) + +OBJS_FORWARD= forwarder.o $(MECHOBJS) blowfish.o automech.c all: $(TARGETS) @@ -40,3 +45,12 @@ install: all cp ipif $(services)/ipif:new cp -b udptunnel $(bindir)/. set -e; cd $(services); test -f ipif || mv ipif:new ipif + +udptunnel-forwarder: $(OBJS_FORWARD) + $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(OBJS_FORWARD) + +automech.c automech.h: automechgen.sh Makefile + ./$< $(MECHFILES) + +forwarder.o $(MECHOBJS) automech.o: mech.h automech.h +blowfish.o mech-blowfish.o: blowfish.h