# which 'modules' are to be compiled # The user interface # At least one module should be activated # simple text interface (very incomplete) USE_UI_TEXT ?= false # gtkmm library version 2.4 - 2.10 (http://www.gtkmm.org) USE_UI_GTKMM ?= true # GTK is not supported anymore since Version 0.6.5 # The network code # It is not necessary for single players # The network does use the 'GNet' library (http://www.gnetlibrary.org/) USE_NETWORK ?= true # whether to use sound support (experimental, use at your own risk) # uses the alut system #USE_SOUND_ALUT ?= true # uses program 'aplay' #USE_SOUND_APLAY ?= true ifeq ($(USE_SOUND_ALUT),true) USE_SOUND = true endif ifeq ($(USE_SOUND_APLAY),true) USE_SOUND = true endif # whether to use thread support (experimental, use at your own risk) #USE_THREADS ?= true