#
# Makefile for the Linux IPSEC user-level code.
#
# $Id: Makefile,v 0.4 1997/01/15 01:38:21 ji Rel $
#
# $Log: Makefile,v $
# 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

all: $(ALL)

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

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

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

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

