Last change
on this file since 760 was
628,
checked in by price, 16 years ago
|
web: fix file permissions on each make
|
File size:
327 bytes
|
Rev | Line | |
---|
[304] | 1 | DIRS = templates |
---|
[205] | 2 | |
---|
[628] | 3 | all: kill chmod compile |
---|
[583] | 4 | |
---|
[628] | 5 | chmod: |
---|
| 6 | chgrp -R sipb-xen . 2>/dev/null || true |
---|
| 7 | chmod -R g+w . 2>/dev/null || true |
---|
| 8 | |
---|
[583] | 9 | kill: |
---|
| 10 | wget http://xvm.mit.edu/kill.cgi -O /dev/null -nv |
---|
| 11 | |
---|
| 12 | compile: |
---|
[304] | 13 | for dir in $(DIRS); do \ |
---|
| 14 | (cd $$dir; $(MAKE) all); \ |
---|
| 15 | done |
---|
[205] | 16 | |
---|
| 17 | clean: |
---|
[304] | 18 | for dir in $(DIRS); do \ |
---|
| 19 | (cd $$dir; $(MAKE) clean); \ |
---|
| 20 | done |
---|
Note: See
TracBrowser
for help on using the repository browser.