diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..92b2a0d --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ +dist/tacview-splitter: tacview-splitter.py + pyinstaller --onefile tacview-splitter.py + +clean: + rm -rf build __pycache__ tacview-splitter.spec + +distclean: clean + rm -rf dist +