blob: ead2a070bee5052e3964b0749c229fedd3755a0b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# $NetBSD: Makefile.sequencer,v 1.2 2000/03/15 02:09:08 fvdl Exp $
SEQHEADER=aic7xxx_seq.h
REGHEADER=aic7xxx_reg.h
AICASMINCS=-I/usr/include -I../../..
PROG= aicasm
SRCS= aicasm.c aicasm_symbol.c aicasm_scan.l aicasm_gram.y
YHEADER=1
DPADD+= ${LIBL}
LDADD+= -ll
MKSHARE=no
.include <bsd.prog.mk>
regen: headers
headers: ${PROG} aic7xxx.seq
./${PROG} ${AICASMINCS} -o ${SEQHEADER} -r ${REGHEADER} aic7xxx.seq
|