Files
lk/platform/qemu-mips/rules.mk

22 lines
348 B
Makefile
Raw Permalink Normal View History

2015-11-30 18:57:37 -08:00
LOCAL_DIR := $(GET_LOCAL_DIR)
MODULE := $(LOCAL_DIR)
ARCH := mips
MIPS_CPU := m14k
2015-11-30 18:57:37 -08:00
MODULE_DEPS += \
lib/cbuf
MODULE_SRCS += \
$(LOCAL_DIR)/debug.c \
2015-11-30 18:57:37 -08:00
$(LOCAL_DIR)/intc.c \
$(LOCAL_DIR)/platform.c
2015-11-30 18:57:37 -08:00
MEMBASE ?= 0x80000000 # not exactly correct but gets us going for now
2015-11-30 18:57:37 -08:00
MEMSIZE ?= 0x01000000 # 16MB
MODULE_DEPS += \
include make/module.mk