2012-07-20 09:50:39 +02:00
|
|
|
obj-$(CONFIG_SOFTMMU) += machine.o
|
2018-05-23 17:14:46 +02:00
|
|
|
obj-y += cpu.o exception.o interrupt.o mmu.o translate.o disas.o
|
2015-04-07 22:31:50 +02:00
|
|
|
obj-y += exception_helper.o fpu_helper.o \
|
2018-05-23 03:21:21 +02:00
|
|
|
interrupt_helper.o sys_helper.o
|
2013-06-29 04:18:45 +02:00
|
|
|
obj-y += gdbstub.o
|
2018-02-19 21:28:12 +01:00
|
|
|
|
|
|
|
DECODETREE = $(SRC_PATH)/scripts/decodetree.py
|
|
|
|
|
2020-02-04 12:41:01 +01:00
|
|
|
target/openrisc/decode.c.inc: \
|
2018-02-19 21:28:12 +01:00
|
|
|
$(SRC_PATH)/target/openrisc/insns.decode $(DECODETREE)
|
|
|
|
$(call quiet-command,\
|
|
|
|
$(PYTHON) $(DECODETREE) -o $@ $<, "GEN", $(TARGET_DIR)$@)
|
|
|
|
|
2020-02-04 12:41:01 +01:00
|
|
|
target/openrisc/translate.o: target/openrisc/decode.c.inc
|
|
|
|
target/openrisc/disas.o: target/openrisc/decode.c.inc
|