197fcf851c8f7f3610b9cd64b9874da261e9bbdc
[dragonfly.git] / usr.sbin / acpi / iasl / Makefile
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.2 2007/01/17 17:31:20 y0netan1 Exp $
3
4 PROG=   iasl
5 SRCS=   aslcompiler.y.h aslcompilerlex.l aslcompilerparse.y \
6         aslanalyze.c aslbtypes.c aslwalks.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 aslstartup.c aslresource.c \
10         aslrestype1.c aslrestype2.c asltree.c aslutils.c \
11         asltransform.c aslfold.c aslstubs.c aslopt.c \
12         aslpredef.c asluuid.c aslrestype1i.c aslrestype2d.c aslrestype2e.c \
13         aslrestype2q.c aslrestype2w.c
14
15 SRCS+=  adisasm.c getopt.c osunixxf.c
16 SRCS+=  dbfileio.c dmbuffer.c dmnames.c dmopcode.c dmobject.c \
17         dmresrc.c dmresrcl.c dmresrcs.c dmutils.c dmwalk.c dmextern.c \
18         dsopcode.c dsargs.c dscontrol.c dsutils.c dswexec.c dswload.c \
19         dswscope.c dswstate.c dsfield.c dsobject.c dswload2.c \
20         exconvrt.c excreate.c exdump.c exmisc.c \
21         exmutex.c exnames.c exoparg1.c exoparg2.c \
22         exoparg3.c exoparg6.c exprep.c exregion.c \
23         exresnte.c exresolv.c exresop.c exstore.c \
24         exstoren.c exstorob.c exsystem.c exutils.c \
25         nsaccess.c nsalloc.c nsdump.c nsnames.c nsobject.c \
26         nsparse.c nssearch.c nsutils.c nswalk.c nsxfobj.c \
27         psargs.c psopcode.c psparse.c psscope.c \
28         pstree.c psutils.c pswalk.c \
29         tbfadt.c tbinstal.c tbutils.c tbxface.c \
30         utalloc.c utcopy.c utdebug.c utdelete.c utinit.c \
31         utglobal.c utobject.c utlock.c utmisc.c utmath.c utdecode.c \
32                 utxface.c utxferror.c \
33         dttemplate.c dtcompile.c dtsubtable.c dtutils.c dtfield.c dtio.c dttable.c dtexpress.c
34
35 SRCS+=  adfile.c adwalk.c dmrestag.c dmtbdump.c dmtbinfo.c dmtable.c psloop.c utcache.c utmutex.c utresrc.c utstate.c
36
37 MAN=    iasl.8
38
39 CFLAGS+= -D_ACPI_ASL_COMPILER -DACPI_ASL_COMPILER -DACPI_USE_ALTERNATE_TIMEOUT -I.
40
41 CFLAGS+= -D_USE_BERKELEY_YACC
42 LDADD=  -lpthread
43 DPADD=  ${LIBPTHREAD}
44 LFLAGS= -i -PAslCompiler
45 YFLAGS= -d -pAslCompiler
46
47 CLEANFILES= aslcompiler.y.h aslcompilerlex.l aslcompilerparse.y
48
49 aslcompiler.y.h: aslcompilerparse.h
50         cat ${.ALLSRC} > ${.TARGET}
51
52 aslcompilerlex.l: aslcompiler.l
53         cat ${.ALLSRC} > ${.TARGET}
54
55 aslcompilerparse.y: aslcompiler.y
56         cat ${.ALLSRC} > ${.TARGET}
57
58 .include <bsd.prog.mk>