mirror of
https://github.com/hedge-dev/XenonRecomp.git
synced 2025-07-24 22:13:57 +00:00
Initial Commit
This commit is contained in:
15
thirdparty/capstone/contrib/m68k_instruction_tbl_gen/Makefile
vendored
Normal file
15
thirdparty/capstone/contrib/m68k_instruction_tbl_gen/Makefile
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
CC=gcc
|
||||
ODIR=obj
|
||||
TBL_GEN=tbl_gen
|
||||
INC_FILE=../../arch/M68K/M68KInstructionTable.inc
|
||||
|
||||
gen_inc: $(TBL_GEN)
|
||||
./$(TBL_GEN) > $(INC_FILE)
|
||||
|
||||
tbl_gen: M68KInstructionTblGen.c
|
||||
$(CC) -O3 M68KInstructionTblGen.c -o $(TBL_GEN)
|
||||
|
||||
.PHONY: clean
|
||||
|
||||
clean:
|
||||
rm $(TBL_GEN)
|
Reference in New Issue
Block a user