summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorTimothy Gu <timothygu99@gmail.com>2014-04-11 04:40:27 (GMT)
committerTimothy Gu <timothygu99@gmail.com>2014-04-11 04:40:27 (GMT)
commitb89c4d4703d82faa432ccf4117b7e70e712c73d7 (patch)
tree960cafc454a4cec87aaa84ed908f4637e2c67bec /Makefile
parentbe851a57019d46dbfd4ee9a36253f5e799e17d5e (diff)
downloadmxe-b89c4d4703d82faa432ccf4117b7e70e712c73d7.zip
mxe-b89c4d4703d82faa432ccf4117b7e70e712c73d7.tar.gz
mxe-b89c4d4703d82faa432ccf4117b7e70e712c73d7.tar.bz2
Add documentation for default settings.mk
Signed-off-by: Timothy Gu <timothygu99@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 496cb8e..5aa04d1 100644
--- a/Makefile
+++ b/Makefile
@@ -122,9 +122,22 @@ else ifeq ($(wildcard $(PWD)/settings.mk),$(PWD)/settings.mk)
else
$(info [create settings.mk])
$(shell { \
+ echo '# This is a template of configuration file for MXE. See'; \
+ echo '# index.html for more extensive documentations.'; \
+ echo; \
+ echo '# This variable controls the number of compilation processes'; \
+ echo '# within one package ("intra-package parallelism").'; \
echo '#JOBS := $(JOBS)'; \
+ echo; \
+ echo '# This variable controls the targets that will build.'; \
echo '#MXE_TARGETS := $(MXE_TARGET_LIST)'; \
+ echo; \
+ echo '# This variable controls the download mirror for SourceForge,'; \
+ echo '# when it is used. Enabling the value below means auto.'; \
echo '#SOURCEFORGE_MIRROR := downloads.sourceforge.net'; \
+ echo; \
+ echo '# The three lines below makes `make` build these "local'; \
+ echo '# packages" instead of all packages.'; \
echo '#LOCAL_PKG_LIST := boost curl file flac lzo pthreads vorbis wxwidgets'; \
echo '#.DEFAULT local-pkg-list:'; \
echo '#local-pkg-list: $$(LOCAL_PKG_LIST)'; \