source: Makefile @ 188:7d7aaa97142a

Last change on this file since 188:7d7aaa97142a was 188:7d7aaa97142a, checked in by fnevgeny, 14 years ago

Added "make migration" rule.

File size: 462 bytes
Line 
1################################################################################
2# SETTINGS
3################################################################################
4
5GENERATOR = ./generate.py
6
7all:
8        $(GENERATOR) source
9
10pack:
11        $(GENERATOR) build && zip -r pf.zip build
12
13api:
14        $(GENERATOR) api
15
16upload:
17        $(GENERATOR) build && \
18                rsync -av --rsh=ssh build/ plasma-gate:public_html/pf
19
20migration:
21        $(GENERATOR) migration
22
23clean:
24        $(GENERATOR) clean
Note: See TracBrowser for help on using the repository browser.