ea24af1043
Allow each builder to cache some files for re-use in the next build. This allows for poor-man's dependency chaining. Additionally, add a common cache pool for all builds. This can be used for saving (for example) downloaded files to be shared between builds.
8 lines
100 B
Bash
8 lines
100 B
Bash
#!/bin/sh
|
|
|
|
rm -rf install out build cache
|
|
mkdir build
|
|
mkdir out
|
|
mkdir install
|
|
mkdir -p cache/common
|