├── .gitignore ├── 01-target.md ├── 01-target ├── Makefile ├── hello.go └── sample_test.go ├── 02-c-option.md ├── 02-c-option └── Makefile ├── 03-drop-non-zero.md ├── 03-drop-non-zero └── Makefile ├── 04-variable.md ├── 04-variable └── Makefile ├── 05-prerequire.md ├── 05-prerequire ├── .gitignore └── Makefile ├── 06-auto-var-target.md ├── 06-auto-var-target ├── .gitignore └── Makefile ├── 07-auto-var-prerequire.md ├── 07-auto-var-prerequire └── Makefile ├── 08-suppress.md ├── 08-suppress └── Makefile ├── 09-ignore-failure.md ├── 09-ignore-failure └── Makefile ├── 09-ignore-loop.md ├── 09-ignore-loop ├── Makefile ├── loop.mk └── loop.sh ├── 20-suffix_rule.md ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .* 2 | !.git* 3 | 4 | -------------------------------------------------------------------------------- /01-target.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voyagegroup/make-advent-calendar-2017-to-2019/HEAD/01-target.md -------------------------------------------------------------------------------- /01-target/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voyagegroup/make-advent-calendar-2017-to-2019/HEAD/01-target/Makefile -------------------------------------------------------------------------------- /01-target/hello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voyagegroup/make-advent-calendar-2017-to-2019/HEAD/01-target/hello.go -------------------------------------------------------------------------------- /01-target/sample_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voyagegroup/make-advent-calendar-2017-to-2019/HEAD/01-target/sample_test.go -------------------------------------------------------------------------------- /02-c-option.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voyagegroup/make-advent-calendar-2017-to-2019/HEAD/02-c-option.md -------------------------------------------------------------------------------- /02-c-option/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voyagegroup/make-advent-calendar-2017-to-2019/HEAD/02-c-option/Makefile -------------------------------------------------------------------------------- /03-drop-non-zero.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voyagegroup/make-advent-calendar-2017-to-2019/HEAD/03-drop-non-zero.md -------------------------------------------------------------------------------- /03-drop-non-zero/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voyagegroup/make-advent-calendar-2017-to-2019/HEAD/03-drop-non-zero/Makefile -------------------------------------------------------------------------------- /04-variable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voyagegroup/make-advent-calendar-2017-to-2019/HEAD/04-variable.md -------------------------------------------------------------------------------- /04-variable/Makefile: -------------------------------------------------------------------------------- 1 | 2 | ENV := production 3 | 4 | all: 5 | echo $(ENV) 6 | -------------------------------------------------------------------------------- /05-prerequire.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voyagegroup/make-advent-calendar-2017-to-2019/HEAD/05-prerequire.md -------------------------------------------------------------------------------- /05-prerequire/.gitignore: -------------------------------------------------------------------------------- 1 | *.csv 2 | -------------------------------------------------------------------------------- /05-prerequire/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voyagegroup/make-advent-calendar-2017-to-2019/HEAD/05-prerequire/Makefile -------------------------------------------------------------------------------- /06-auto-var-target.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voyagegroup/make-advent-calendar-2017-to-2019/HEAD/06-auto-var-target.md -------------------------------------------------------------------------------- /06-auto-var-target/.gitignore: -------------------------------------------------------------------------------- 1 | *.csv 2 | -------------------------------------------------------------------------------- /06-auto-var-target/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voyagegroup/make-advent-calendar-2017-to-2019/HEAD/06-auto-var-target/Makefile -------------------------------------------------------------------------------- /07-auto-var-prerequire.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voyagegroup/make-advent-calendar-2017-to-2019/HEAD/07-auto-var-prerequire.md -------------------------------------------------------------------------------- /07-auto-var-prerequire/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voyagegroup/make-advent-calendar-2017-to-2019/HEAD/07-auto-var-prerequire/Makefile -------------------------------------------------------------------------------- /08-suppress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voyagegroup/make-advent-calendar-2017-to-2019/HEAD/08-suppress.md -------------------------------------------------------------------------------- /08-suppress/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voyagegroup/make-advent-calendar-2017-to-2019/HEAD/08-suppress/Makefile -------------------------------------------------------------------------------- /09-ignore-failure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voyagegroup/make-advent-calendar-2017-to-2019/HEAD/09-ignore-failure.md -------------------------------------------------------------------------------- /09-ignore-failure/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voyagegroup/make-advent-calendar-2017-to-2019/HEAD/09-ignore-failure/Makefile -------------------------------------------------------------------------------- /09-ignore-loop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voyagegroup/make-advent-calendar-2017-to-2019/HEAD/09-ignore-loop.md -------------------------------------------------------------------------------- /09-ignore-loop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voyagegroup/make-advent-calendar-2017-to-2019/HEAD/09-ignore-loop/Makefile -------------------------------------------------------------------------------- /09-ignore-loop/loop.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voyagegroup/make-advent-calendar-2017-to-2019/HEAD/09-ignore-loop/loop.mk -------------------------------------------------------------------------------- /09-ignore-loop/loop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voyagegroup/make-advent-calendar-2017-to-2019/HEAD/09-ignore-loop/loop.sh -------------------------------------------------------------------------------- /20-suffix_rule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voyagegroup/make-advent-calendar-2017-to-2019/HEAD/20-suffix_rule.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voyagegroup/make-advent-calendar-2017-to-2019/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voyagegroup/make-advent-calendar-2017-to-2019/HEAD/README.md --------------------------------------------------------------------------------