Move all app common files under apps/common

This commit is contained in:
Toby Jaffey 2025-12-12 15:45:17 +00:00
parent 60f362b819
commit 5bd6a32013
31 changed files with 49 additions and 49 deletions

View file

@ -4,10 +4,10 @@ PROJECT:=$(shell basename ${PWD})
HEAP_SIZE=$(shell echo "1024 * 1024 * 32" | bc)
OPT=-Os
CFLAGS=-DHEAP_SIZE=${HEAP_SIZE}
SRCS=${PROJECT}.c ${TOPDIR}/apps/crt0.S barr_memtest.c
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/makefile.common
include ${TOPDIR}/apps/common/makefile.common