Deleted Added
sdiff udiff text old ( 151948 ) new ( 167814 )
full compact
1# $FreeBSD: head/usr.sbin/acpi/iasl/Makefile 151948 2005-11-01 22:44:08Z jkim $
2
3PROG= iasl
4SRCS= adisasm.c
5SRCS+= osunixxf.c
6
7# common
8SRCS+= 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 \

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

37SRCS+= psargs.c psloop.c psopcode.c psparse.c psscope.c \
38 pstree.c psutils.c pswalk.c
39
40# namespace
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+= tbinstal.c tbutils.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 utstate.c
51
52MAN= iasl.8
53
54CFLAGS+= -DACPI_ASL_COMPILER -I.
55CFLAGS+= -D_USE_BERKELEY_YACC
56LFLAGS= -i -PAslCompiler
57YFLAGS= -d -pAslCompiler
58

--- 12 unchanged lines hidden ---