DKIM: document proper Ed25519 key-generation methods; remove helper program
[users/jgh/exim.git] / src / util / Makefile.in
diff --git a/src/util/Makefile.in b/src/util/Makefile.in
deleted file mode 100644 (file)
index c2970c9..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-# This Makefile builds support programs for Exim
-
-##############################################################################
-# These variables are set by the configure script.
-
-CC=@CC@
-CFLAGS=@CFLAGS@ @BIND_8_COMPAT@ @DEFS@
-LDFLAGS=@LDFLAGS@
-B64_GNUTLS=@B64_GNUTLS@
-LIBS=@LIBS@
-
-SRC = @srcdir@/src
-
-##############################################################################
-
-BINARIES =     $(B64_GNUTLS)
-
-# List of targets
-
-all:            binaries
-
-binaries:      $(BINARIES)
-
-ed25519_privkey_pem_to_pubkey_raw_b64:     $(SRC)/ed25519_privkey_pem_to_pubkey_raw_b64.c Makefile
-               $(CC) $(CFLAGS) -DHAVE_GNUTLS $(LDFLAGS) -o ed25519_privkey_pem_to_pubkey_raw_b64 \
-                       $(SRC)/ed25519_privkey_pem_to_pubkey_raw_b64.c  -lgnutls -lgcrypt $(LIBS)
-
-clean:;         rm -rf $(BINARIES)
-
-FORCE:
-
-# End