mirror of
https://github.com/ringtailsoftware/uvm32.git
synced 2026-06-05 22:43:39 +00:00
13 lines
340 B
Makefile
13 lines
340 B
Makefile
TOPDIR=../..
|
|
PROJECT:=$(shell basename ${PWD})
|
|
|
|
HEAP_SIZE=$(shell echo "1024 * 1024 * 32" | bc)
|
|
OPT=-Os
|
|
CFLAGS=-DHEAP_SIZE=${HEAP_SIZE}
|
|
SRCS=${PROJECT}.c ${TOPDIR}/apps/common/crt0.S barr_memtest.c
|
|
|
|
HOST_EXTRA=-e ${HEAP_SIZE} -i 4294967295
|
|
all: all_common
|
|
test: test_common
|
|
clean: clean_common
|
|
include ${TOPDIR}/apps/common/makefile.common
|