1234567891011121314151617181920212223242526 |
- # Makefile for Animal Crossing GUI
- # Creates a folder containing the exe and associated files needed to run
- # the animal sorting program.
- #
- # Copyright 2022 Stephen Stengel <stephen.stengel@cwu.edu> and friends
- #
- # Will probably only work on Mac and Linux. No idea if Windows has Make.
- # Just copy paste the command on windows.
- sorter-gui:
- pyinstaller sorter-gui.py --windowed --add-data="settings.ini:." --add-data="checkpoint:checkpoint"
- #Comment the above and use this one instead on windows:
- #sorter-gui:
- # pyinstaller sorter-gui.py --windowed --add-data="settings.ini;." --add-data="checkpoint;checkpoint" --add-data="tux.ascii;."
- cmd:
- pyinstaller cmdsorting.py --distpath=cmddist --workpath=cmdbuild --add-data="settings.ini:." --add-data="checkpoint:checkpoint" --add-data="cmd-helpfile.txt:." --add-data="tux.ascii:."
- #This will not work on windows.
- .PHONY: clean
- clean:
- rm -rf dist build test-outputs/*/*.jpg test-outputs/* *.spec cmddist cmdbuild
|