source: Makefile @ 175:51f1b4d45dfb

Last change on this file since 175:51f1b4d45dfb was 168:7348142813d1, checked in by fnevgeny, 14 years ago

Update build before rsync'ing.

File size: 426 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
20clean:
21        $(GENERATOR) clean
Note: See TracBrowser for help on using the repository browser.