source: trunk/packages/invirt-web/code/Makefile @ 2183

Last change on this file since 2183 was 2183, checked in by price, 15 years ago

pkill directly rather than fool around with a CGI

kill.cgi has been broken for a while, and the Makefile has the wrong URI
for dev anyway.

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