source: Makefile @ 237:e6d628316eb4

Last change on this file since 237:e6d628316eb4 was 234:29875102fa52, checked in by Evgeny Stambulchik <Evgeny.Stambulchik@…>, 13 years ago

make clean also removes the zip pack.

File size: 492 bytes
RevLine 
[74]1################################################################################
2# SETTINGS
3################################################################################
4
5GENERATOR = ./generate.py
6
[234]7PACK = pf.zip
8
[74]9all:
10        $(GENERATOR) source
11
[114]12pack:
[234]13        $(GENERATOR) build && zip -r $(PACK) pf
[74]14
[81]15api:
16        $(GENERATOR) api
17
[84]18upload:
[168]19        $(GENERATOR) build && \
20                rsync -av --rsh=ssh build/ plasma-gate:public_html/pf
[84]21
[188]22migration:
23        $(GENERATOR) migration
24
[74]25clean:
[234]26        $(GENERATOR) clean && rm -f $(PACK)
Note: See TracBrowser for help on using the repository browser.