mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-11-06 05:17:54 +00:00
0a3812cf4f
"env" now only generates the environment, and depends only on config.json, which is run only when necessary. There exists only one "make configure" command, which force-runs config.json and builds the env.
6 lines
142 B
Makefile
6 lines
142 B
Makefile
.PHONY: env
|
|
PWD = $$(pwd)
|
|
|
|
env: ## Create the platform environment
|
|
@$(MAKE) -s -C .. substitute TEMPLATES=$(PWD)/templates OUTPUT=$(PWD)/env
|