# $FreeBSD: head/sys/dev/aic7xxx/aicasm/Makefile 60983 2000-05-27 21:35:47Z obrien $ 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+= -nostdinc -I${.CURDIR}/../.. -I. -I/usr/include NOMAN= noman .ifdef DEBUG CFLAGS+= -DDEBUG -g YFLAGS+= -t LFLAGS+= -d .endif .include