nshell/makefile

14 lines
253 B
Makefile

all:
fxsdk build-cg
fxlink -s -w60 -f 'mass_storage;series_cg' *.g3a
clean:
rm -rf *.g1a *.g3a build/ build-fx/ build-cg/
format:
find src/ -name *.[c,h] -exec clang-format --verbose -i {} \;
# aliases
build: all
rebuild: clean build
tidy: format