6b3daecd80
reorganization in rev 1.16 of i386/include/types.h which changed stdlib.h's use of <machine/types.h>. The problem was the -I. was causing machine/types.h to come from the current kernel source, while stdlib.h was coming from /usr/include. /usr/include/stdlib.h is as old as the last 'make world', the machine/types.h was as new as the current source.
32 lines
522 B
Makefile
32 lines
522 B
Makefile
# $Id: Makefile,v 1.4 1997/09/27 19:37:22 gibbs Exp $
|
|
|
|
PROG= aicasm
|
|
|
|
CSRCS= aicasm.c aicasm_symbol.c
|
|
GENSRCS= aicasm_gram.c aicasm_scan.c
|
|
|
|
GENHDRS= y.tab.h
|
|
|
|
SRCS= ${GENSRCS} ${CSRCS}
|
|
CLEANFILES+= ${GENSRCS} ${GENHDRS} y.output
|
|
DPADD+= ${LIBL}
|
|
LDADD+= -ll
|
|
|
|
# Correct path for kernel builds
|
|
# Don't rely on the kernel's .depend file
|
|
.ifdef MAKESRCPATH
|
|
.PATH: ${MAKESRCPATH}
|
|
DEPENDFILE=
|
|
.endif
|
|
|
|
CFLAGS+= -I/usr/include -I.
|
|
NOMAN= noman
|
|
|
|
.ifdef DEBUG
|
|
CFLAGS+= -DDEBUG -g
|
|
YFLAGS+= -t
|
|
LFLAGS+= -d
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|