21 lines
564 B
Makefile
21 lines
564 B
Makefile
# $Id: Makefile.inc,v 1.2 1998/03/14 02:29:24 kato Exp $
|
|
|
|
.if exists(${.CURDIR}/../../../../include)
|
|
CFLAGS+= -nostdinc -I${.CURDIR}/../../../../include
|
|
.endif
|
|
CFLAGS+= -I${.CURDIR}/../../.. -I${.OBJDIR}
|
|
CLEANFILES+= machine
|
|
|
|
.if defined(SRCS)
|
|
${SRCS:M*.[sS]:R:S/$/.o/g} ${SRCS:M*.c:R:S/$/.o/g}: machine
|
|
${SRCS:M*.cc:R:S/$/.o/g} ${SRCS:M*.C:R:S/$/.o/g}: machine
|
|
${SRCS:M*.cxx:R:S/$/.o/g} ${SRCS:N*.h:R:S/$/.o/g}: machine
|
|
.endif
|
|
.if defined(OBJS)
|
|
${OBJS}: machine
|
|
.endif
|
|
|
|
beforedepend: machine
|
|
machine:
|
|
ln -s ${.CURDIR}/../../../i386/include ${.OBJDIR}/machine
|