all: setres __main__.py: __main__.py.gpp gpp -s '%%' < $@.gpp > $@ chmod -- a+x "$@" setres.zip: __main__.py get.py set.py zip $@ $^ setres: setres.zip echo '#!/usr/bin/python3' > $@ cat -- setres.zip >> $@ chmod -- a+x $@ clean: -rm -rf -- *.zip *.pyc __main__.py __pycache__/ *~ reallyclean: clean -rm -f -- setres .PHONY: all clean reallyclean