shithub: scc

ref: 8e4d55811b9f52d2f8439a2507321f792c33b69f
dir: /as/target/amd64/target.mk/

View raw version

AMD64_LST = target/amd64/instbl.o target/amd64/ins.o target/amd64/proc.o

$(AMD64_LST): target/x86/proc.h

target/amd64/instbl.c: target/gen.awk target/x86/x86.dat
	set -e ;\
	rm -f $@;\
	trap "rm -f $$$$.c" 0 2 3; \
	awk -v cpu=BITS64 -v family=x86 \
		-f target/gen.awk  \
		< target/x86/x86.dat > $$$$.c && mv $$$$.c $@

OBJ-amd64 = $(OBJ) $(AMD64_LST)