elite-scripts/Makefile

22 lines
448 B
Makefile
Raw Normal View History

2019-11-12 10:31:51 +01:00
all: docs
2020-01-08 15:04:05 +01:00
zipfile = elite-scripts.zip
clean:
rm -f $(zipfile)
2019-11-12 10:31:51 +01:00
docs:
bash generate_docs.sh
2019-09-18 14:06:28 +02:00
# requires a windows box
exe:
pip install --user -r requirements.txt
pip install --user -r pyEDSM\requirements.txt
2019-09-18 14:06:28 +02:00
pyinstaller.exe -y edsm-getnearest.py
2019-11-12 10:31:51 +01:00
pyinstaller.exe -y explorationtools.py
2020-01-08 15:04:05 +01:00
2020-01-08 16:58:00 +01:00
# probably wont work unless youre me :)
2020-01-08 15:04:05 +01:00
release: clean
rsync -avz gezocks:/mnt/d/git/elite-scripts/dist/ build/
cd build && zip -r ../$(zipfile) *