#Specify which platform you´re running # if you´re using another platform don´t uncomment anything #ENV_MINGW32 = 1 ENV_LINUX = 1 #The destination dir where the executable will be stored, relative to the base dir DESTINATION_DIR = . #The data path where the data files will be searched (default will look in the same directory than the executable) #Be sure you use the correct path seperator here if you enter anything DESCENT_DATA_PATH = ifeq ($(ENV_MINGW32),1) include $(TOPDIR)/config.mingw else ifeq ($(ENV_LINUX),1) ENV_LINUX = 1 include $(TOPDIR)/config.linux else include $(TOPDIR)/config.other endif endif