Browse Source

Makefile contains a command to create the default directories of an instance

Roland Haroutiounian 8 years ago
parent
commit
7831378575
1 changed files with 4 additions and 1 deletions
  1. 4
    1
      install/Makefile

+ 4
- 1
install/Makefile View File

@@ -1,4 +1,4 @@
1
-all: refreshdyn dbinit
1
+all: refreshdyn dbinit dirinit
2 2
 
3 3
 refreshdyn: distclean
4 4
 	python -c "import utils; utils.refreshdyn()"
@@ -6,6 +6,9 @@ refreshdyn: distclean
6 6
 dbinit:
7 7
 	python -c "import utils; utils.db_init()"
8 8
 
9
+dirinit:
10
+	@mkdir templates
11
+
9 12
 emgraph:
10 13
 	python -c "import utils; utils.em_graph()"
11 14
 

Loading…
Cancel
Save