trunk/src/osd/sdl/sdl.mak
r241363 | r241364 | |
83 | 83 | OSDSRC = $(SRC)/osd |
84 | 84 | OSDOBJ = $(OBJ)/osd |
85 | 85 | |
86 | | # auto-select SDL2 for non-OS/2 builds now |
| 86 | # default to SDL2 for non-OS/2 builds now |
| 87 | ifndef SDL_LIBVER |
87 | 88 | ifneq ($(TARGETOS),os2) |
88 | 89 | SDL_LIBVER = sdl2 |
| 90 | else |
| 91 | SDL_LIBVER = sdl |
89 | 92 | endif |
| 93 | endif |
90 | 94 | |
91 | 95 | ifndef NO_USE_QTDEBUG |
92 | 96 | OBJDIRS += $(OSDOBJ)/modules/debugger/qt |
93 | 97 | endif |
94 | 98 | |
95 | | ifndef SDL_LIBVER |
96 | | SDL_LIBVER = sdl |
97 | | endif |
98 | | |
99 | 99 | ifdef SDL_INSTALL_ROOT |
100 | 100 | SDL_CONFIG = $(SDL_INSTALL_ROOT)/bin/$(SDL_LIBVER)-config |
101 | 101 | else |