#
# Makefile for the ipsec routines
#
# Note! Dependencies are done automagically by 'make dep', which also
# removes any old dependencies. DON'T put your own dependencies here
# unless it's something special (ie not a .c file).
#
# Note 2! The CFLAGS definition is now in the main makefile...

include $(TOPDIR)/Rules.make


all: ipsec_transforms.o

TR_OBJS := esp_des_cbc.o hmacmd596.o common_auth.o common_cipher.o aes_cipher.o \
  esp_3des_cbc.o esp_rc5_cbc.o esp_blf_cbc.o esp_idea_cbc.o esp_mars_cbc.o \
  esp_rc6_cbc.o esp_rijndael_cbc.o esp_serpent_cbc.o esp_twofish_cbc.o \
  hmacsha96.o auth_test.o cipher_test.o esp_null.o

ipsec_transforms.o: $(TR_OBJS)
	$(LD) $(LD_RFLAG) -r -o $@ $(TR_OBJS)
