# HG changeset patch # User Matti Hamalainen # Date 1572353161 -7200 # Node ID 463e5d9771eeb5efa7e88c8c9258d12d2efd6802 # Parent 2d8fee6425434707f67113c65ab9a8c8a20b2fb0 More build system work: change DMCONFIG Make variable to DM_CONFIG, and add option of setting it to value "no" which disables inclusion of "config.mak". Setting DM_CONFIG to any other non-empty value will include file with that name instead. Empty value will include default "config.mak". diff -r 2d8fee642543 -r 463e5d9771ee Makefile.gen --- a/Makefile.gen Tue Oct 29 14:36:13 2019 +0200 +++ b/Makefile.gen Tue Oct 29 14:46:01 2019 +0200 @@ -1,8 +1,10 @@ ### ### Get settings from config.mak ### -ifneq ($(DMCONFIG),) -include $(DMCONFIG) +ifneq ($(DM_CONFIG),) +ifneq ($(DM_CONFIG),no) +include $(DM_CONFIG) +endif else include config.mak endif