# # 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 = test-digest-hmac_md5.o test-cipher-des_ede3.o test-proto-esp.o obj-$(CONFIG_GE_PROTO_ESP_SW) += test-proto-esp.o obj-$(CONFIG_GE_CIPHER_DES_EDE3_SW) += test-cipher-des_ede3.o obj-$(CONFIG_GE_DIGEST_HMAC_MD5_SW) += test-digest-hmac_md5.o include $(TOPDIR)/Rules.make