makefile_base.mak: Comment expected settings from configure.sh

This commit is contained in:
John Schoenick 2018-08-28 14:51:08 -07:00
parent 154cda1b7f
commit f5e8954c5f

View file

@ -25,6 +25,14 @@ else # (Rest of the file is the else)
## Config
##
# We expect the configure script to conditionally set the following:
# SRCDIR - Path to source
# NO_DXVK - 1 if skipping DXVK steps
# STEAMRT64_MODE - 'docker' or '' for automatic Steam Runtime container
# STEAMRT64_IMAGE - Name of the image if mode is set
# STEAMRT32_MODE - Same as above for 32-bit container (can be different type)
# STEAMRT32_IMAGE - Same as above for 32-bit container
ifeq ($(SRCDIR),)
foo := $(error SRCDIR not set, do not include makefile_base directly, run ./configure.sh to generate Makefile)
endif