diff options
author | njl <njl@FreeBSD.org> | 2003-08-11 15:49:14 +0000 |
---|---|---|
committer | njl <njl@FreeBSD.org> | 2003-08-11 15:49:14 +0000 |
commit | b984cea4428252c6c92362d4e353c589314d8887 (patch) | |
tree | 6338e799f7affa26fcbf4a73cf8de30baaa8909e /usr.sbin/acpi/iasl/Makefile | |
parent | 8fcac13acd71669ed66cc7f1571f0799ee6d2e05 (diff) | |
download | FreeBSD-src-b984cea4428252c6c92362d4e353c589314d8887.zip FreeBSD-src-b984cea4428252c6c92362d4e353c589314d8887.tar.gz |
Remove the band-aid to make these compile on amd64/ia64.
Diffstat (limited to 'usr.sbin/acpi/iasl/Makefile')
-rw-r--r-- | usr.sbin/acpi/iasl/Makefile | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/usr.sbin/acpi/iasl/Makefile b/usr.sbin/acpi/iasl/Makefile index 5e27c26..49a5b57 100644 --- a/usr.sbin/acpi/iasl/Makefile +++ b/usr.sbin/acpi/iasl/Makefile @@ -7,7 +7,7 @@ SRCS+= aslcompilerparse.c aslcompilerlex.c aslanalyze.c aslcodegen.c \ aslmap.c aslopcodes.c asloperands.c aslresource.c \ aslrestype1.c aslrestype2.c asltree.c aslutils.c \ asltransform.c aslfold.c aslstubs.c aslopt.c -SRCS+= adisasm.c getopt.c osunixxf-xxx.c +SRCS+= adisasm.c getopt.c osunixxf.c SRCS+= dbfileio.c dmbuffer.c dmnames.c dmopcode.c dmobject.c \ dmresrc.c dmresrcl.c dmresrcs.c dmutils.c dmwalk.c \ dsopcode.c dsutils.c dswexec.c dswload.c \ @@ -49,9 +49,4 @@ aslcompilerlex.c: aslcompiler.l ${LEX} ${LFLAGS} -PAslCompiler -oaslcompilerlex.c \ ${ACPICA_DIR}/compiler/aslcompiler.l -# The following band-aid is also present in ../acpidb/Makefile -CLEANFILES+= osunixxf-xxx.c -osunixxf-xxx.c: osunixxf.c - cat ${.ALLSRC} | sed -e 's/UINT32 *length/ACPI_SIZE length/g' -e 's/UINT32 *size/ACPI_SIZE size/g' -e 's/(UINT32) where/(uintptr_t)where/g' > ${.TARGET} - .include <bsd.prog.mk> |