1
0
mirror of synced 2024-11-24 07:00:15 +01:00
TaikoArcadeLoader/Makefile
BroGamer b119478ce3 Initial refactor
cards.dat has been replaced with cards.ini
there are no more plugins though plugin support still exists
card reading is not yet implemented
08.18/amauth support is not yet implemented
2023-09-10 17:50:00 +12:00

16 lines
271 B
Makefile

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