WiiPy/Makefile
NinjaCheetah 76c78e6d85
Added tmd edit command to change properties of a TMD file, same options as wad edit
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
2024-11-16 15:13:48 -05:00

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