projects
/
invirt/packages/invirt-web.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Revert punting the "moocow" password in invirt-web and
[invirt/packages/invirt-web.git]
/
code
/
Makefile
1
DIRS = templates
2
3
all: kill chmod compile
4
5
chmod:
6
chgrp -R invirt . 2>/dev/null || true
7
chmod -R g+w . 2>/dev/null || true
8
9
kill:
10
-pkill main.fcgi
11
12
compile:
13
for dir in $(DIRS); do \
14
(cd $$dir; $(MAKE) all); \
15
done
16
17
clean:
18
for dir in $(DIRS); do \
19
(cd $$dir; $(MAKE) clean); \
20
done