blob: aa6f2d2d6cd1750f542c003042896cc3f5da9dcb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
obj-y += translate.o op_helper.o helper.o cpu.o gdbstub.o disas.o
obj-$(CONFIG_SOFTMMU) += monitor.o
DECODETREE = $(SRC_PATH)/scripts/decodetree.py
target/rx/decode.inc.c: \
$(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.inc.c
target/rx/disas.o: target/rx/decode.inc.c
|