summaryrefslogtreecommitdiff
path: root/src/util/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/Makefile.in')
-rw-r--r--src/util/Makefile.in32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/util/Makefile.in b/src/util/Makefile.in
deleted file mode 100644
index c2970c9c4..000000000
--- a/src/util/Makefile.in
+++ /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