GNUmakefile
379 Bytes
include $(ROOT)/usr/include/make/commondefs
include $(ROOT)/usr/include/make/PRdefs
TARGETS = hello
CFILES = hello.c
ASFILES = boot.s
OPTIMIZER=
LCOPTS += -mips3 -g
LLDOPTS += -Ttext 0x80000000 -N
LDIRT += cpu.log*
default : $(TARGETS) link
hello : $(OBJECTS)
$(CCF) -o hello boot.o hello.o $(LDFLAGS)
link:
ln -sf ../cpus/simbb/SIMOS-X86/simos .
include $(COMMONRULES)