Revision 14896
Added by Aaron Marcuse-Kubitza about 10 years ago
Makefile | ||
---|---|---|
3 | 3 |
subMake += --makefile=../input.Makefile |
4 | 4 |
|
5 | 5 |
|
6 |
##### Configuration |
|
7 |
|
|
8 |
# vars |
|
9 |
all ?= |
|
10 |
|
|
11 |
|
|
6 | 12 |
# Paths |
7 | 13 |
bin := ../bin |
8 | 14 |
|
... | ... | |
19 | 25 |
upload: _always |
20 | 26 |
$(bin)/sync_upload './**' |
21 | 27 |
download: _always |
22 |
swap=1 $(bin)/sync_upload './**'
|
|
28 |
swap=1 $(bin)/sync_upload $(if $(all),'./**','.[^as.]*/**')
|
|
23 | 29 |
|
24 | 30 |
##### install |
25 | 31 |
|
Also available in: Unified diff
inputs/Makefile: download: don't download all the inputs by default, to speed up installation on a new machine. instead, enable this with the $(all) flag.