1
0
mirror of synced 2024-11-28 01:10:55 +01:00
TaikoArcadeLoader/Makefile
KIT! a5200b11de Fixed compile error
Now compiling with --allow-multiple-definition. This is FAR from ideal but i don't have enough experience in C to fix this differently.
2024-09-09 14:54:47 +02:00

16 lines
263 B
Makefile

all:
@meson compile -C build
@strip build/bnusio.dll
setup:
@meson setup build --cross cross-mingw-64.txt --wipe
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 .
@rm -rf out