source: Makefile @ 140:20ceaf28cdaa

Last change on this file since 140:20ceaf28cdaa was 140:20ceaf28cdaa, checked in by fnevgeny, 15 years ago

"pack" target actually creates the zip.

File size: 393 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        rsync -av --rsh=ssh build/ plasma-gate:public_html/pf
18
19clean:
20        $(GENERATOR) clean
Note: See TracBrowser for help on using the repository browser.