blob: cc3c4204a12aeee8adef667b2ac87154d64e864b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
obj-y += translate.o op_helper.o helper.o cpu.o gdbstub.o disas.o
DECODETREE = $(SRC_PATH)/scripts/decodetree.py
target/rx/decode.c.inc: \
$(SRC_PATH)/target/rx/insns.decode $(DECODETREE)
$(call quiet-command,\
$(PYTHON) $(DECODETREE) --varinsnwidth 32 -o $@ $<, "GEN", $(TARGET_DIR)$@)
target/rx/translate.o: target/rx/decode.c.inc
target/rx/disas.o: target/rx/decode.c.inc
|