blob: 3bad622fceb548fb2acfbec7d2130121a646f14a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
--- Makefile.orig 2016-06-04 10:05:27 UTC
+++ Makefile
@@ -1,14 +1,14 @@
PROG= moo
SRCS= moo.c scan.c
CPPFLAGS+= -I${.CURDIR}
-COPTS+= -Wall -W -Wno-unused -Wshadow -pedantic -std=c99
+CFLAGS+= -Wall -W -Wno-unused -Wshadow -pedantic -std=c99
CLEANFILES+= moo.c y.tab.h scan.c lex.yy.c
LOCALBASE?=/usr/local
BINDIR=${LOCALBASE}/bin
MANDIR=${LOCALBASE}/man/cat
-regress::
+regress:
cd ${.CURDIR}/regress && ${MAKE} MOO=${.OBJDIR}/moo
.include <bsd.prog.mk>
|