DKIM: move ed25519_privkey_pem_to_pubkey_raw_b64 to src/util/ and add usage notes...
[exim.git] / src / util / Makefile.in
1 # This Makefile builds support programs for Exim
2
3 ##############################################################################
4 # These variables are set by the configure script.
5
6 CC=@CC@
7 CFLAGS=@CFLAGS@ @BIND_8_COMPAT@ @DEFS@
8 LDFLAGS=@LDFLAGS@
9 B64_GNUTLS=@B64_GNUTLS@
10 LIBS=@LIBS@
11
12 SRC = @srcdir@/src
13
14 ##############################################################################
15
16 BINARIES = $(B64_GNUTLS)
17
18 # List of targets
19
20 all: binaries
21
22 binaries: $(BINARIES)
23
24 ed25519_privkey_pem_to_pubkey_raw_b64: $(SRC)/ed25519_privkey_pem_to_pubkey_raw_b64.c Makefile
25 $(CC) $(CFLAGS) -DHAVE_GNUTLS $(LDFLAGS) -o ed25519_privkey_pem_to_pubkey_raw_b64 \
26 $(SRC)/ed25519_privkey_pem_to_pubkey_raw_b64.c -lgnutls -lgcrypt $(LIBS)
27
28 clean:; rm -rf $(BINARIES)
29
30 FORCE:
31
32 # End