18 lines
464 B
Makefile
18 lines
464 B
Makefile
# -*- makefile -*-
|
|
LINK_BASE = 0x80200000
|
|
target_machine=yeeloong
|
|
COMMON_CFLAGS += -march=mips3
|
|
COMMON_ASFLAGS += -march=mips3
|
|
include $(srcdir)/conf/mips.mk
|
|
|
|
# For pci.mod.
|
|
pkglib_MODULES += pci.mod
|
|
pci_mod_SOURCES = bus/pci.c bus/bonito.c
|
|
pci_mod_CFLAGS = $(COMMON_CFLAGS)
|
|
pci_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
|
|
|
# For pci.mod.
|
|
pkglib_MODULES += sm712.mod
|
|
sm712_mod_SOURCES = video/sm712.c
|
|
sm712_mod_CFLAGS = $(COMMON_CFLAGS)
|
|
sm712_mod_LDFLAGS = $(COMMON_LDFLAGS)
|