elite-scripts/Makefile
alterNERDtive 16a903ac22 updated Makefile
now I hopefully won’t forget to pull new dependencies before building
the Windows binaries …
2020-01-13 22:25:58 +01:00

21 lines
448 B
Makefile
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

all: docs
zipfile = elite-scripts.zip
clean:
rm -f $(zipfile)
docs:
bash generate_docs.sh
# requires a windows box
exe:
pip install --user -r requirements.txt
pip install --user -r pyEDSM\requirements.txt
pyinstaller.exe -y edsm-getnearest.py
pyinstaller.exe -y explorationtools.py
# probably wont work unless youre me :)
release: clean
rsync -avz gezocks:/mnt/d/git/elite-scripts/dist/ build/
cd build && zip -r ../$(zipfile) *