xref: /dragonfly/usr.sbin/acpi/iasl/Makefile (revision 333227be)
1# $FreeBSD: src/usr.sbin/acpi/iasl/Makefile,v 1.5 2004/01/13 20:53:56 ru Exp $
2# $DragonFly: src/usr.sbin/acpi/iasl/Makefile,v 1.1 2004/07/05 00:22:43 dillon Exp $
3
4PROG=	iasl
5SRCS=	aslcompiler.y.h aslcompilerlex.l aslcompilerparse.y \
6	aslanalyze.c aslcodegen.c \
7	aslcompile.c aslerror.c aslfiles.c asllength.c \
8	asllisting.c aslload.c asllookup.c aslmain.c \
9	aslmap.c aslopcodes.c asloperands.c aslresource.c \
10	aslrestype1.c aslrestype2.c asltree.c aslutils.c \
11	asltransform.c aslfold.c aslstubs.c aslopt.c
12SRCS+=	adisasm.c getopt.c osunixxf.c
13SRCS+=	dbfileio.c dmbuffer.c dmnames.c dmopcode.c dmobject.c \
14        dmresrc.c dmresrcl.c dmresrcs.c dmutils.c dmwalk.c \
15        dsopcode.c dsutils.c dswexec.c dswload.c \
16	dswscope.c dswstate.c dsfield.c dsobject.c \
17        exconvrt.c excreate.c exdump.c exmisc.c \
18        exmutex.c exnames.c exoparg1.c exoparg2.c \
19        exoparg3.c exoparg6.c exprep.c exregion.c \
20        exresnte.c exresolv.c exresop.c exstore.c \
21        exstoren.c exstorob.c exsystem.c exutils.c \
22        nsaccess.c nsalloc.c nsdump.c nsnames.c nsobject.c \
23	nsparse.c nssearch.c nsutils.c nswalk.c nsxfobj.c \
24        psargs.c psopcode.c psparse.c psscope.c \
25        pstree.c psutils.c pswalk.c \
26        tbinstal.c tbutils.c \
27	utalloc.c utcopy.c utdebug.c utdelete.c \
28        utglobal.c utobject.c utmisc.c utmath.c
29
30MAN=	iasl.8
31
32CFLAGS+= -D_ACPI_ASL_COMPILER -I.
33
34CFLAGS+= -D_USE_BERKELEY_YACC
35LFLAGS=	-i -PAslCompiler
36YFLAGS=	-d -pAslCompiler
37
38CLEANFILES= aslcompiler.y.h aslcompilerlex.l aslcompilerparse.y
39
40aslcompiler.y.h: aslcompilerparse.h
41	cat ${.ALLSRC} > ${.TARGET}
42
43aslcompilerlex.l: aslcompiler.l
44	cat ${.ALLSRC} > ${.TARGET}
45
46aslcompilerparse.y: aslcompiler.y
47	cat ${.ALLSRC} > ${.TARGET}
48
49.include <bsd.prog.mk>
50