1
0
mirror of synced 2024-11-27 17:00:53 +01:00
TaikoArcadeLoader/Makefile

27 lines
498 B
Makefile
Raw Permalink Normal View History

2024-11-07 13:18:33 +01:00
default: dist-no-7z
2024-03-23 12:08:42 +01:00
all:
@meson compile -C build
@strip build/bnusio.dll
setup:
@meson setup build --cross cross-mingw-64.txt
clean-setup:
@meson setup --wipe build --cross cross-mingw-64.txt
clean:
@rm -rf out
@rm -rf build
@rm -f dist.7z
@cd subprojects && find . -maxdepth 1 ! -name packagefiles -type d -not -path '.' -exec rm -rf {} +
2024-03-23 12:08:42 +01:00
dist-no-7z: all
@mkdir -p out/
@cp build/bnusio.dll out/
@cp -r dist/* out/
dist: dist-no-7z
@cd out && 7z a -t7z ../dist.7z .
2024-03-23 12:08:42 +01:00
@rm -rf out