mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-23 16:09:47 +00:00
Some file cleanup.
This commit is contained in:
parent
301303a83b
commit
faa7f10530
12
Makefile
12
Makefile
@ -9,27 +9,27 @@ libsnes = -lsnes
|
||||
LIBS = -lsamplerate $(libsnes)
|
||||
|
||||
ifeq ($(BUILD_RSOUND), 1)
|
||||
OBJ += rsound.o
|
||||
OBJ += audio/rsound.o
|
||||
LIBS += -lrsound
|
||||
endif
|
||||
ifeq ($(BUILD_OSS), 1)
|
||||
OBJ += oss.o
|
||||
OBJ += audio/oss.o
|
||||
endif
|
||||
ifeq ($(BUILD_ALSA), 1)
|
||||
OBJ += alsa.o
|
||||
OBJ += audio/alsa.o
|
||||
LIBS += -lasound
|
||||
endif
|
||||
ifeq ($(BUILD_ROAR), 1)
|
||||
OBJ += roar.o
|
||||
OBJ += audio/roar.o
|
||||
LIBS += -lroar
|
||||
endif
|
||||
ifeq ($(BUILD_AL), 1)
|
||||
OBJ += openal.o
|
||||
OBJ += audio/openal.o
|
||||
LIBS += -lopenal
|
||||
endif
|
||||
|
||||
ifeq ($(BUILD_OPENGL), 1)
|
||||
OBJ += gl.o
|
||||
OBJ += gfx/gl.o
|
||||
LIBS += -lglfw
|
||||
endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user