Revision 9742
Added by Aaron Marcuse-Kubitza over 11 years ago
Makefile | ||
---|---|---|
23 | 23 |
##### Installation |
24 | 24 |
|
25 | 25 |
# public must be installed *after* inputs because some views depend on inputs |
26 |
install: _always core mysql inputs/download inputs/install \ |
|
26 |
install: _always config core mysql inputs/download inputs/install \
|
|
27 | 27 |
schemas/public/install test |
28 | 28 |
@$(done) |
29 | 29 |
|
... | ... | |
31 | 31 |
|
32 | 32 |
reinstall: _always uninstall install ; |
33 | 33 |
|
34 |
##### config: live and test environments |
|
35 |
|
|
36 |
config: _always |
|
37 |
mkdir -p ~/bin |
|
38 |
ln -s $(realpath bin/make) ~/bin |
|
39 |
|
|
34 | 40 |
##### Core: VegBIEN DB and dependencies |
35 | 41 |
|
36 | 42 |
core: _always $(call forOs,apache python php postgres misc) db |
Also available in: Unified diff
/Makefile: new config target (part of install): install our bin/make in the user's ~/bin dir so that bin/make (with filtering of verbose messages) will always be used instead of standard make (without us needing to change every occurrence of make to bin/make!)