Edit

IABSD.fr/src/usr.sbin/httpd/Makefile

Branch :

  • Show log

    Commit

  • Author : espie
    Date : 2017-07-03 22:21:47
    Hash : 186e29d5
    Message : no need to generate y.tab.h if nothing uses it, set YFLAGS to nothing instead of CLEANFILES += y.tab.h okay millert@

  • usr.sbin/httpd/Makefile
  • #	$OpenBSD: Makefile,v 1.30 2017/07/03 22:21:47 espie Exp $
    
    PROG=		httpd
    SRCS=		parse.y
    SRCS+=		config.c control.c httpd.c log.c logger.c proc.c
    SRCS+=		server.c server_http.c server_file.c server_fcgi.c
    MAN=		httpd.8 httpd.conf.5
    
    SRCS+=		patterns.c
    MAN+=		patterns.7
    
    LDADD=		-levent -ltls -lssl -lcrypto -lutil
    DPADD=		${LIBEVENT} ${LIBTLS} ${LIBSSL} ${LIBCRYPTO} ${LIBUTIL}
    #DEBUG=		-g -DDEBUG=3 -O0
    CFLAGS+=	-Wall -I${.CURDIR}
    CFLAGS+=	-Wstrict-prototypes -Wmissing-prototypes
    CFLAGS+=	-Wmissing-declarations
    CFLAGS+=	-Wshadow -Wpointer-arith
    CFLAGS+=	-Wsign-compare -Wcast-qual
    YFLAGS=
    
    .include <bsd.prog.mk>