projects
/
invirt/packages/invirt-web.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Revert punting the "moocow" password in invirt-web and
[invirt/packages/invirt-web.git]
/
code
/
Makefile
diff --git
a/code/Makefile
b/code/Makefile
index
582293f
..
b114e86
100644
(file)
--- a/
code/Makefile
+++ b/
code/Makefile
@@
-1,6
+1,15
@@
DIRS = templates
-all:
+all: kill chmod compile
+
+chmod:
+ chgrp -R invirt . 2>/dev/null || true
+ chmod -R g+w . 2>/dev/null || true
+
+kill:
+ -pkill main.fcgi
+
+compile:
for dir in $(DIRS); do \
(cd $$dir; $(MAKE) all); \
done