mirror of
https://github.com/ringtailsoftware/uvm32.git
synced 2026-06-05 22:43:39 +00:00
10 lines
403 B
Makefile
10 lines
403 B
Makefile
TOPDIR=../..
|
|
PROJECT:=$(shell basename ${PWD})
|
|
SRCS=${PROJECT}.c ${TOPDIR}/apps/crt0.S ${TOPDIR}/uvm32/uvm32.c
|
|
CFLAGS=-DUVM32_MEMORY_SIZE=8192 -DCUSTOM_STDLIB_H=\"uvm32_target.h\" -I../../uvm32
|
|
all:
|
|
xxd -n mandel -i ${TOPDIR}/precompiled/mandel.bin | sed -e "s/unsigned char/const unsigned char/" > mandel.h
|
|
make all_common
|
|
test: test_common
|
|
clean: clean_common
|
|
include ${TOPDIR}/apps/makefile.common
|