Fix CFLAGS+=-DDEBUG by using the right header for libutil (libutil.h, not

util.h)
This commit is contained in:
Enji Cooper 2014-11-30 09:03:34 +00:00
parent 317fdbc621
commit d370dc47a1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/projects/building-blocks/; revision=275306
2 changed files with 6 additions and 8 deletions

View File

@ -7,13 +7,11 @@ MAN= rcorder.8
LIBADD= util
# XXX hack for make's hash.[ch]
CFLAGS+= -DORDER -I.
CFLAGS+= -DORDER
SRCS+= util.h
CLEANFILES+= util.h
util.h:
ln -sf ${.CURDIR}/../../lib/libutil/libutil.h ${.TARGET}
#CFLAGS+= -DDEBUG
.if ${CFLAGS:M*-DDEBUG}
CFLAGS+= -I${.CURDIR}/../../usr.bin/make
.endif
.include <bsd.prog.mk>

View File

@ -42,10 +42,10 @@ __FBSDID("$FreeBSD$");
#include <err.h>
#include <stdio.h>
#include <libutil.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <util.h>
#include "ealloc.h"
#include "sprite.h"