################################################################################ # SETTINGS ################################################################################ GENERATOR = ./generate.py PACK = source/pf.zip all: $(GENERATOR) source pack: $(GENERATOR) build && zip -r $(PACK) pf api: $(GENERATOR) api upload: $(GENERATOR) build && \ rsync -av --rsh=ssh build/ plasma-gate:public_html/pf upload_pack: pack rsync -av --rsh=ssh $(PACK) plasma-gate:public_html/pf/ migration: $(GENERATOR) migration clean: $(GENERATOR) clean && rm -f $(PACK)