From 712e5df429b7a93ecee52d9f7e7d76594122a516 Mon Sep 17 00:00:00 2001 From: Mitja Felicijan Date: Sun, 12 May 2024 12:35:16 +0200 Subject: Added environmental variables from file loader extension --- Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 12629ca..60a5f94 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,7 @@ MEX_DESCRIPTION="This provides some additional tools for makefiles." MEX_LICENSE="Released under the BSD two-clause license, see the LICENSE file for more information." MEX_ASSURE="python3 ls tree clang" +MEX_ENVIRONMENT="local.env second.env" include makext.mk @@ -9,6 +10,14 @@ help: .help demo-assure: .assure @echo "All good, continuing..." +demo-envars: + @echo "Envrionment variables" + @echo " HOME: $(HOME)" + @echo " TERM: $(TERM)" + @echo " ENV: $(MEX_ENVIRONMENT)" + @echo " AUDIO_BUCKET: $(AUDIO_BUCKET)" + @echo " DB_HOST: $(DB_HOST)" + build-app: clean-cache # Build the application @echo "Building the application..." -- cgit v1.2.3