# # Makefile for the Linux kernel crypto library. # # 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 (not a .c file). # # Note 2! The CFLAGS definitions are now in the main makefile. export-objs = engine.o proto-esp-sw.o cipher-des_ede3-sw.o digest-hmac_md5-sw.o #O_TARGET := engine.o obj-$(CONFIG_GENERIC_ENGINE) += engine.o obj-$(CONFIG_GE_PROTO_ESP_SW) += proto-esp-sw.o obj-$(CONFIG_GE_CIPHER_DES_EDE3_SW) += cipher-des_ede3-sw.o obj-$(CONFIG_GE_DIGEST_HMAC_MD5_SW) += digest-hmac_md5-sw.o include $(TOPDIR)/Rules.make