build: use pkg-config for i18n
[exim.git] / src / src / pdkim / Makefile
diff --git a/src/src/pdkim/Makefile b/src/src/pdkim/Makefile
deleted file mode 100644 (file)
index c298568..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-# Make file for building the pdkim library.
-
-OBJ = pdkim.o rsa.o
-
-pdkim.a:         $(OBJ)
-                @$(RM_COMMAND) -f pdkim.a
-                @echo "$(AR) pdkim.a"
-                $(FE)$(AR) pdkim.a $(OBJ)
-                $(RANLIB) $@
-
-.SUFFIXES:       .o .c
-.c.o:;           @echo "$(CC) $*.c"
-                $(FE)$(CC) -c $(CFLAGS) $(INCLUDE) -I. $*.c
-
-pdkim.o: $(HDRS) crypt_ver.h pdkim.h pdkim.c
-rsa.o:   $(HDRS) crypt_ver.h rsa.h rsa.c
-
-# End