source: package_branches/invirt-web/cherrypy-rebased/code/Makefile @ 2685

Last change on this file since 2685 was 2231, checked in by broder, 15 years ago

Don't bork of there is no main.fcgi.

File size: 292 bytes
Line 
1DIRS = templates
2
3all: kill chmod compile
4
5chmod:
6        chgrp -R invirt . 2>/dev/null || true
7        chmod -R g+w . 2>/dev/null || true
8
9kill:
10        -pkill main.fcgi
11
12compile:
13        for dir in $(DIRS); do \
14                (cd $$dir; $(MAKE) all); \
15        done
16
17clean:
18        for dir in $(DIRS); do \
19                (cd $$dir; $(MAKE) clean); \
20        done
Note: See TracBrowser for help on using the repository browser.