DKIM: move ed25519_privkey_pem_to_pubkey_raw_b64 to src/util/ and add usage notes...
[users/jgh/exim.git] / src / util / Makefile.in
diff --git a/src/util/Makefile.in b/src/util/Makefile.in
new file mode 100644 (file)
index 0000000..c2970c9
--- /dev/null
@@ -0,0 +1,32 @@
+# 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