mirror of
https://github.com/NinjaCheetah/WiiPy.git
synced 2025-04-26 05:11:02 -04:00
Stubbed theme command temporarily as it will not be part of WiiPy v1.4.0. Workflow also adjusted to build for x86_64 and arm64 on macOS
15 lines
307 B
Makefile
15 lines
307 B
Makefile
CC=python -m nuitka
|
|
ARCH_FLAGS?=
|
|
|
|
all:
|
|
$(CC) --show-progress --assume-yes-for-downloads --onefile wiipy.py --onefile-tempdir-spec="{CACHE_DIR}/NinjaCheetah/WiiPy" $(ARCH_FLAGS) -o wiipy
|
|
|
|
install:
|
|
install wiipy /usr/bin/
|
|
|
|
clean:
|
|
rm wiipy
|
|
rm -rd wiipy.build
|
|
rm -rd wiipy.dist
|
|
rm -rd wiipy.onefile-build
|