Previous | 199869 Revisions | Next |
r32848 Tuesday 21st October, 2014 at 00:42:20 UTC by R. Belmont |
---|
SDL: SDL2 is now the default except for OS/2 builds. [R. Belmont] USE_NETWORK Ethernet emulation is now enabled by default as per the roadmap. [R. Belmont] |
[/trunk] | makefile |
[src/osd/sdl] | sdl.mak |
r241359 | r241360 | |
---|---|---|
262 | 262 | # uncomment next line to enable LTO (link-time optimizations) |
263 | 263 | # LTO = 1 |
264 | 264 | |
265 | # uncomment next line to enable networking | |
266 | # USE_NETWORK = 1 | |
265 | # uncomment next line to disable networking | |
266 | # DONT_USE_NETWORK = 1 | |
267 | 267 | |
268 | 268 | # uncomment to enable SSE2 optimized code and SSE2 code generation (implicitly enabled by 64-bit compilers) |
269 | 269 | # SSE2 = 1 |
r241359 | r241360 | |
463 | 463 | DEFS += -DMAME_PROFILER |
464 | 464 | endif |
465 | 465 | |
466 | # define USE_NETWORK if we are a making network enabled build | |
467 | ifdef USE_NETWORK | |
466 | # dine USE_NETWORK if networking is enabled (not OS/2 and hasn't been disabled) | |
467 | ifneq ($(TARGETOS),os2) | |
468 | ifndef DONT_USE_NETWORK | |
468 | 469 | DEFS += -DUSE_NETWORK |
469 | 470 | endif |
471 | endif | |
470 | 472 | |
471 | 473 | # need to ensure FLAC functions are statically linked |
472 | 474 | ifeq ($(BUILD_FLAC),1) |
r241359 | r241360 | |
---|---|---|
58 | 58 | # There is no need to play with this option unless you are doing |
59 | 59 | # active development on sdlmame or SDL. |
60 | 60 | |
61 | # uncomment the next line to compile and link against SDL2.0 | |
62 | # SDL_LIBVER = sdl2 | |
63 | ||
64 | 61 | # uncomment the next line to use couriersud's multi-keyboard patch for SDL 2.1? (this API was removed prior to the 2.0 release) |
65 | 62 | # SDL2_MULTIAPI = 1 |
66 | 63 | |
r241359 | r241360 | |
86 | 83 | OSDSRC = $(SRC)/osd |
87 | 84 | OSDOBJ = $(OBJ)/osd |
88 | 85 | |
86 | # auto-select SDL2 for non-OS/2 builds now | |
87 | ifneq ($(TARGETOS),os2) | |
88 | SDL_LIBVER = sdl2 | |
89 | endif | |
90 | ||
89 | 91 | ifndef NO_USE_QTDEBUG |
90 | 92 | OBJDIRS += $(OSDOBJ)/modules/debugger/qt |
91 | 93 | endif |
https://github.com/mamedev/mame/commit/b1efba0d14e72bbc09367ba46c393049f880f68a |
Previous | 199869 Revisions | Next |