[Make] refactor build script to use config file

This commit is contained in:
tqchen
2016-01-02 18:49:05 -08:00
parent 7e6f00ee11
commit 084f5f4715
5 changed files with 124 additions and 56 deletions

22
make/minimum.mk Normal file
View File

@@ -0,0 +1,22 @@
#-----------------------------------------------------
# xgboost: minumum dependency configuration,
# see config.mk for template.
#----------------------------------------------------
# Whether enable openmp support, needed for multi-threading.
USE_OPENMP = 0
# whether use HDFS support during compile
USE_HDFS = 0
# whether use AWS S3 support during compile
USE_S3 = 0
# whether use Azure blob support during compile
USE_AZURE = 0
# Rabit library version,
# - librabit.a Normal distributed version.
# - librabit_empty.a Non distributed mock version,
LIB_RABIT = librabit_empty.a