dxx-rebirth/config
2006-04-03 18:09:40 +00:00

26 lines
623 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#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