a3da742b72
directory. Rename (via repository copy) some files so that the potential for future conflicts is minimized. PR: conf/4363
25 lines
441 B
Makefile
25 lines
441 B
Makefile
# $Id: Makefile,v 1.2 1997/04/03 05:56:00 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.
|
|
NOMAN= noman
|
|
.include <bsd.prog.mk>
|