1
0

chore(MP): init mini-project

This commit is contained in:
2026-05-29 12:54:48 +00:00
parent 04dad90d55
commit e313e95f9f
3 changed files with 22 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
CompileFlags:
Add:
# Architecture and cross-compilation
- "--target=aarch64-linux-gnu"
# Setup sysroot for buildroot
- "--sysroot=/buildroot/output/host/aarch64-buildroot-linux-gnu/sysroot"

View File

@@ -0,0 +1,5 @@
EXE=mini-project
SRCS=$(wildcard *.c)
# Include the standard application Makefile for the CSEL1 labs
include ../appl.mk

View File

@@ -0,0 +1,10 @@
@default:
just --list
@build:
make
@clean:
rm -rf build
rm -rf .obj
rm -f -- mini-project