mirror of
https://github.com/ringtailsoftware/uvm32.git
synced 2026-06-05 22:43:39 +00:00
8 lines
189 B
Makefile
8 lines
189 B
Makefile
TOPDIR=../../
|
|
PROJECT:=$(shell basename ${PWD})
|
|
SRCS=${PROJECT}.c ${TOPDIR}/apps/crt0.S
|
|
OPT=-O0
|
|
all: all_common
|
|
test: test_common
|
|
clean: clean_common
|
|
include ${TOPDIR}/apps/makefile.common
|