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