Makefile revision 1.11
1# $NetBSD: Makefile,v 1.11 2021/03/14 00:22:16 rillig Exp $ 2# from: @(#)Makefile 8.1 (Berkeley) 6/6/93 3 4PROG= indent 5SRCS= indent.c io.c lexi.c parse.c pr_comment.c args.c 6 7CPPFLAGS+= ${DEBUG:D-Ddebug} 8LINTFLAGS+= -e -w 9 10# bug in lint; see tests/usr.bin/lint/lint1/msg_168.c 11LINTFLAGS.lexi.c+= -X 168 12 13.include <bsd.prog.mk> 14