Deleted Added
full compact
Makefile (167814) Makefile (193531)
1# $FreeBSD: head/usr.sbin/acpi/iasl/Makefile 167814 2007-03-22 18:16:43Z jkim $
1# $FreeBSD: head/usr.sbin/acpi/iasl/Makefile 193531 2009-06-05 18:50:45Z jkim $
2
3PROG= iasl
4SRCS= adfile.c adisasm.c adwalk.c
5SRCS+= osunixxf.c
6
7# common
8SRCS+= dmrestag.c dmtable.c dmtbdump.c dmtbinfo.c getopt.c
9
10# compiler
11SRCS+= aslanalyze.c aslcodegen.c aslcompile.c aslcompiler.y.h \
12 aslcompilerlex.l aslcompilerparse.y aslerror.c \
13 aslfiles.c aslfold.c asllength.c asllisting.c \
14 aslload.c asllookup.c aslmain.c aslmap.c aslopcodes.c \
15 asloperands.c aslopt.c aslresource.c aslrestype1.c \
2
3PROG= iasl
4SRCS= adfile.c adisasm.c adwalk.c
5SRCS+= osunixxf.c
6
7# common
8SRCS+= dmrestag.c dmtable.c dmtbdump.c dmtbinfo.c getopt.c
9
10# compiler
11SRCS+= aslanalyze.c aslcodegen.c aslcompile.c aslcompiler.y.h \
12 aslcompilerlex.l aslcompilerparse.y aslerror.c \
13 aslfiles.c aslfold.c asllength.c asllisting.c \
14 aslload.c asllookup.c aslmain.c aslmap.c aslopcodes.c \
15 asloperands.c aslopt.c aslresource.c aslrestype1.c \
16 aslrestype2.c aslstubs.c asltransform.c asltree.c \
17 aslutils.c
16 aslrestype2.c aslstartup.c aslstubs.c asltransform.c \
17 asltree.c aslutils.c
18
19# debugger
20SRCS+= dbfileio.c
21
22# disassembler
23SRCS+= dmbuffer.c dmnames.c dmobject.c dmopcode.c dmresrc.c \
24 dmresrcl.c dmresrcs.c dmutils.c dmwalk.c
25

--- 15 unchanged lines hidden (view full) ---

41SRCS+= nsaccess.c nsalloc.c nsdump.c nsnames.c nsobject.c \
42 nsparse.c nssearch.c nsutils.c nswalk.c nsxfobj.c
43
44# tables
45SRCS+= tbfadt.c tbinstal.c tbutils.c tbxface.c
46
47# utilities
48SRCS+= utalloc.c utcache.c utcopy.c utdebug.c utdelete.c \
18
19# debugger
20SRCS+= dbfileio.c
21
22# disassembler
23SRCS+= dmbuffer.c dmnames.c dmobject.c dmopcode.c dmresrc.c \
24 dmresrcl.c dmresrcs.c dmutils.c dmwalk.c
25

--- 15 unchanged lines hidden (view full) ---

41SRCS+= nsaccess.c nsalloc.c nsdump.c nsnames.c nsobject.c \
42 nsparse.c nssearch.c nsutils.c nswalk.c nsxfobj.c
43
44# tables
45SRCS+= tbfadt.c tbinstal.c tbutils.c tbxface.c
46
47# utilities
48SRCS+= utalloc.c utcache.c utcopy.c utdebug.c utdelete.c \
49 utglobal.c utmath.c utmisc.c utmutex.c utobject.c \
50 utresrc.c utstate.c
49 utglobal.c utinit.c utlock.c utmath.c utmisc.c \
50 utmutex.c utobject.c utresrc.c utstate.c utxface.c
51
52MAN= iasl.8
53
54CFLAGS+= -DACPI_ASL_COMPILER -I.
55CFLAGS+= -D_USE_BERKELEY_YACC
56LFLAGS= -i -PAslCompiler
57YFLAGS= -d -pAslCompiler
51
52MAN= iasl.8
53
54CFLAGS+= -DACPI_ASL_COMPILER -I.
55CFLAGS+= -D_USE_BERKELEY_YACC
56LFLAGS= -i -PAslCompiler
57YFLAGS= -d -pAslCompiler
58DPADD= ${LIBPTHREAD}
59LDADD= -lpthread
58
59CLEANFILES= aslcompiler.y.h aslcompilerlex.l aslcompilerparse.y
60
61aslcompiler.y.h: aslcompilerparse.h
62 cat ${.ALLSRC} > ${.TARGET}
63
64aslcompilerlex.l: aslcompiler.l
65 cat ${.ALLSRC} > ${.TARGET}
66
67aslcompilerparse.y: aslcompiler.y
68 cat ${.ALLSRC} > ${.TARGET}
69
70.include <bsd.prog.mk>
60
61CLEANFILES= aslcompiler.y.h aslcompilerlex.l aslcompilerparse.y
62
63aslcompiler.y.h: aslcompilerparse.h
64 cat ${.ALLSRC} > ${.TARGET}
65
66aslcompilerlex.l: aslcompiler.l
67 cat ${.ALLSRC} > ${.TARGET}
68
69aslcompilerparse.y: aslcompiler.y
70 cat ${.ALLSRC} > ${.TARGET}
71
72.include <bsd.prog.mk>