source: package_tags/invirt-web/0.0.16/code/Makefile

Last change on this file was 1692, checked in by broder, 16 years ago

Don't error out if killing the fcgi processes fails

This was causing the invirt-web install process to sometimes fail,
because it would run before the web server was started back up again

File size: 333 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        wget http://xvm.mit.edu/kill.cgi -O /dev/null -nv || true
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.