[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / src / usr.bin / openssl

Annotation of src/usr.bin/openssl/Makefile, Revision 1.12

1.12    ! tb          1: #      $OpenBSD: Makefile,v 1.11 2019/11/04 15:25:54 jsing Exp $
1.8       jsg         2:
                      3: .include <bsd.own.mk>
1.1       jsing       4:
                      5: PROG=  openssl
                      6: LDADD= -lssl -lcrypto
                      7: DPADD= ${LIBSSL} ${LIBCRYPTO}
                      8:
1.8       jsg         9: CFLAGS+= -Wall
1.1       jsing      10: CFLAGS+= -Wformat
                     11: CFLAGS+= -Wformat-security
                     12: CFLAGS+= -Wimplicit
                     13: CFLAGS+= -Wreturn-type
1.3       jsing      14: #CFLAGS+= -Wshadow
1.1       jsing      15: CFLAGS+= -Wtrigraphs
                     16: CFLAGS+= -Wuninitialized
                     17: CFLAGS+= -Wunused
1.10      doug       18: .if ${COMPILER_VERSION:L} == "clang"
1.8       jsg        19: CFLAGS+= -Werror
                     20: .endif
1.1       jsing      21: CFLAGS+= -DLIBRESSL_INTERNAL
                     22:
1.11      jsing      23: SRCS=  apps.c apps_posix.c asn1pars.c ca.c certhash.c ciphers.c cms.c crl.c \
1.5       jsing      24:        crl2p7.c dgst.c dh.c dhparam.c dsa.c dsaparam.c ec.c ecparam.c enc.c \
1.12    ! tb         25:        errstr.c gendh.c gendsa.c genpkey.c genrsa.c ocsp.c \
1.5       jsing      26:        openssl.c passwd.c pkcs12.c pkcs7.c pkcs8.c pkey.c pkeyparam.c \
                     27:        pkeyutl.c prime.c rand.c req.c rsa.c rsautl.c s_cb.c s_client.c \
                     28:        s_server.c s_socket.c s_time.c sess_id.c smime.c speed.c spkac.c ts.c \
                     29:        verify.c version.c x509.c
1.1       jsing      30:
                     31: .include <bsd.prog.mk>