#
# Makefile for the Linux IPSEC user-level code.
#
# $Id: Makefile,v 0.5 1997/06/03 04:31:55 ji Rel $
#
# $Log: Makefile,v $
# Revision 0.5  1997/06/03 04:31:55  ji
# Added esp 3des-md5-96.
# Added transport mode configuration utility.
#
# Revision 0.4  1997/01/15 01:38:21  ji
# Changed to include setsa.c
#
# Revision 0.3  1996/11/20 14:51:32  ji
# Fixed problems with #include paths.
# Changed (incorrect) references to ipsp into ipsec.
#
#

CC=cc
CFLAGS=-O2 -I/usr/src/linux/net/ipsec
ALL=addrt setsa spigrp tncfg

all: $(ALL)

addrt: addrt.o
	$(CC) $(DFLAGS) -o $@ $?

setsa: setsa.o
	$(CC) $(DFLAGS) -o $@ $?

spigrp: spigrp.o
	$(CC) $(DFLAGS) -o $@ $?

tncfg: tncfg.o
	$(CC) $(DFLAGS) -o $@ $?

clean:
	rm -f *.o $(ALL)

