[BACK]Return to config.mk CVS log [TXT][DIR] Up to [contributed] / brogue-ce

Annotation of brogue-ce/config.mk, Revision 1.1.1.1

1.1       rubenllo    1: # Where to look for game data files (found in 'bin'). Must be without trailing slashes!
                      2: DATADIR := .
                      3:
                      4: # Include terminal support. Requires ncurses
                      5: TERMINAL := NO
                      6:
                      7: # Include graphical support. Requires SDL2 and SDL2_image
                      8: GRAPHICS := YES
                      9: # Path to sdl2-config script
                     10: SDL_CONFIG := sdl2-config
                     11:
                     12: # Select web brogue mode. Requires POSIX system.
                     13: WEBBROGUE := NO
                     14:
                     15: # Enable debugging mode. See top of Rogue.h for features
                     16: DEBUG := NO
                     17:
                     18: # Declare this is a release build
                     19: RELEASE := NO
                     20:
                     21: # Configure the executable to run from a macOS .app bundle (only works in graphical mode)
                     22: MAC_APP := NO

CVSweb