spinix-hive/cdemos/hello/Makefile

23 lines
271 B
Makefile

#
# objects for this program
#
PROPLIB = ../common
NAME = hello
OBJS = hello.o spinix.o
# memory model
MODEL = lmm
#
# enable experimental fcache code for this demo
#
#CFLAGS = -Os -mfcache
CFLAGS = -g -Os
#CFLAGS = -g
all: $(NAME).elf
include $(PROPLIB)/common.mk