uvm32/apps/maze/Makefile
2025-12-11 20:35:39 +00:00

9 lines
209 B
Makefile

TOPDIR=../..
PROJECT:=$(shell basename ${PWD})
SRCS=${PROJECT}.c ${TOPDIR}/apps/crt0.S
OPT=-O2
CFLAGS+=-fpeel-loops
all: all_common
test: test_common
clean: clean_common
include ${TOPDIR}/apps/makefile.common