assets_files = assets/bg1k.png assets/brick.png assets/coin.png assets/ghost.png assets/win.png all: build/web.zip assets: mkdir assets assets/%.png: assets $(../../assets/*.png) cp ../../$@ assets/ build/web: Makefile main.py $(assets_files) pygbag --width 1000 --height 1000 --can_close 1 --title "Призрачный лабиринт: сокровища небесного замка" --icon assets/ghost.png --build . sed -i -e "s|https://pygame-web.github.io/archives/0.9/|https://b4tman.ru/phantomcastle/pygbag/0.9/|g" build/web/index.html sed -i -e "s|en-us|ru-RU|g" build/web/index.html build/web.zip: build/web sh -exc "cd build/web && zip -r ../web.zip ."