X-Git-Url: https://git.exim.org/users/jgh/exim.git/blobdiff_plain/9604413b16bf7270395b92690ef429dca4a14eee..4fe4d0b16321e3af984c3e595aaafbf60a0d0259:/src/util/Makefile.in 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