aboutsummaryrefslogtreecommitdiffstats
path: root/capstone/contrib/m68k_instruction_tbl_gen/Makefile
blob: c01dbe470b6c9109b6872431634e56d37e1ea61e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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)