dxx-rebirth/config

26 lines
632 B
Plaintext
Raw Normal View History

2006-04-03 17:07:02 +00:00
#Specify which platform you´re running
# if you´re using another platform don´t uncomment anything
2006-03-20 16:43:15 +00:00
2006-04-03 17:07:02 +00:00
#ENV_MINGW32 = 1
ENV_LINUX = 1
2006-03-20 16:43:15 +00:00
#The destination dir where the executable will be stored, relative to the base dir
DESTINATION_DIR = ../d1x-run
#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 =
2006-04-03 17:07:02 +00:00
ifeq ($(ENV_MINGW32),1)
2006-03-20 16:43:15 +00:00
include $(TOPDIR)/config.mingw
2006-04-03 17:07:02 +00:00
else
ifeq ($(ENV_LINUX),1)
2006-03-20 16:43:15 +00:00
ENV_LINUX = 1
include $(TOPDIR)/config.linux
2006-04-03 17:07:02 +00:00
else
2006-03-20 16:43:15 +00:00
include $(TOPDIR)/config.other
2006-04-03 17:07:02 +00:00
endif
endif