1
0
mirror of https://github.com/libretro/RetroArch synced 2024-07-03 00:38:44 +00:00
RetroArch/Makefile.common

645 lines
14 KiB
Makefile
Raw Normal View History

2014-09-14 00:15:41 +00:00
ifeq ($(HAVE_FBO), 1)
DEFINES += -DHAVE_FBO
endif
2014-09-14 01:22:04 +00:00
ifeq ($(HAVE_DYLIB), 1)
DEFINES += -DHAVE_DYLIB
endif
2014-09-14 00:52:30 +00:00
ifeq ($(SCALER_NO_SIMD), 1)
DEFINES += -DSCALER_NO_SIMD
endif
2014-09-14 00:15:41 +00:00
2014-09-14 00:52:30 +00:00
ifeq ($(HAVE_PRESERVE_DYLIB),1)
DEFINES += -DNO_DLCLOSE
endif
ifeq ($(GL_DEBUG), 1)
CFLAGS += -DGL_DEBUG
CXXFLAGS += -DGL_DEBUG
endif
ifeq ($(HAVE_HARD_FLOAT), 1)
DEFINES += -mfloat-abi=hard
endif
2014-09-14 02:37:57 +00:00
ifeq ($(TDM_GCC),)
LDCXXFLAGS += -static-libstdc++
endif
2014-09-14 02:43:18 +00:00
ifeq ($(REENTRANT_TEST), 1)
DEFINES += -Dmain=retroarch_main
OBJ += console/test.o
endif
CFLAGS += -I./libretro-sdk/include
# Switches
# Extra menu drivers if GL supported
ifeq ($(HAVE_OPENGL), 1)
ifeq ($(HAVE_RGUI), 1)
HAVE_GLUI = 1
2014-10-08 23:21:22 +00:00
HAVE_XMB = 1
HAVE_LAKKA = 1
endif
endif
2014-09-14 01:38:36 +00:00
# System
ifneq ($(findstring BSD,$(OS)),)
BSD_LOCAL_INC += -I/usr/local/include
endif
ifneq ($(findstring Darwin,$(OS)),)
OSX := 1
LIBS += -framework AppKit
else
OSX := 0
endif
ifneq ($(findstring Linux,$(OS)),)
LIBS += -lrt
JOYCONFIG_LIBS += -lrt
OBJ += input/drivers/linuxraw_input.o input/drivers_joypad/linuxraw_joypad.o
2014-09-14 01:38:36 +00:00
endif
ifeq ($(findstring Haiku,$(OS)),)
LIBS += -lm
DEBUG_FLAG = -g
else
LIBS += -lroot -lnetwork
# stable and nightly haiku builds are stuck on gdb 6.x but we use gcc4
DEBUG_FLAG = -gdwarf-2
endif
# Git
2014-09-14 01:22:04 +00:00
GIT_VERSION := $(shell git rev-parse --short HEAD 2>/dev/null)
ifneq ($(GIT_VERSION),)
DEFINES += -DHAVE_GIT_VERSION -DGIT_VERSION=$(GIT_VERSION)
2014-09-14 01:22:04 +00:00
OBJ += git_version.o
endif
2014-09-14 01:38:36 +00:00
# General object files
OBJ += frontend/frontend.o \
frontend/frontend_driver.o \
frontend/drivers/platform_null.o \
libretro_version_1.o \
retroarch.o \
runloop.o \
content.o \
2014-10-21 17:23:28 +00:00
libretro-sdk/file/file_list.o \
2014-10-21 23:13:05 +00:00
libretro-sdk/file/dir_list.o \
2014-10-21 17:59:27 +00:00
libretro-sdk/string/string_list.o \
2014-10-21 21:53:09 +00:00
file_ops.o \
2014-10-21 22:23:06 +00:00
libretro-sdk/file/file_path.o \
hash.o \
2015-01-12 17:09:31 +00:00
audio/audio_driver.o \
2015-01-12 17:39:27 +00:00
input/input_driver.o \
2015-01-12 17:28:32 +00:00
gfx/video_driver.o \
2015-01-12 18:29:55 +00:00
osk/osk_driver.o \
2015-01-12 18:44:29 +00:00
camera/camera_driver.o \
2015-01-12 19:02:39 +00:00
menu/menu_driver.o \
2015-01-12 18:53:10 +00:00
location/location_driver.o \
driver.o \
settings.o \
settings_list.o \
settings_data.o \
dynamic.o \
dynamic_dummy.o \
2015-01-11 04:35:47 +00:00
libretro-sdk/queues/message_queue.o \
rewind.o \
gfx/gfx_common.o \
gfx/fonts/bitmapfont.o \
input/input_autodetect.o \
input/input_joypad_driver.o \
input/input_joypad.o \
input/input_common.o \
input/input_keymaps.o \
input/keyboard_line.o \
input/input_overlay.o \
patch.o \
libretro-sdk/queues/fifo_buffer.o \
core_options.o \
2014-10-21 05:58:58 +00:00
libretro-sdk/compat/compat.o \
cheats.o \
core_info.o \
2014-10-22 01:35:04 +00:00
libretro-sdk/file/config_file.o \
libretro-sdk/file/config_file_userdata.o \
screenshot.o \
2014-10-23 02:34:35 +00:00
libretro-sdk/gfx/scaler/scaler.o \
gfx/shader/shader_null.o \
gfx/video_shader_driver.o \
2014-10-01 22:45:11 +00:00
gfx/shader/shader_parse.o \
2014-10-23 02:34:35 +00:00
libretro-sdk/gfx/scaler/pixconv.o \
libretro-sdk/gfx/scaler/scaler_int.o \
libretro-sdk/gfx/scaler/scaler_filter.o \
gfx/image/image_rpng.o \
gfx/fonts/fonts.o \
gfx/video_filter.o \
2015-01-12 21:11:13 +00:00
audio/audio_resampler_driver.o \
audio/dsp_filter.o \
2015-01-12 21:11:13 +00:00
audio/drivers_resampler/sinc.o \
audio/drivers_resampler/nearest.o \
audio/drivers_resampler/cc_resampler.o \
location/drivers/nulllocation.o \
2015-01-12 18:04:12 +00:00
camera/drivers/nullcamera.o \
gfx/drivers/nullgfx.o \
2015-01-12 04:05:56 +00:00
audio/drivers/nullaudio.o \
2015-01-12 05:16:52 +00:00
input/drivers/nullinput.o \
input/drivers_joypad/nullinput_joypad.o \
2015-01-12 18:02:30 +00:00
osk/drivers/nullosk.o \
2014-09-14 00:52:30 +00:00
playlist.o \
movie.o \
2015-01-12 20:55:41 +00:00
record/record_driver.o \
performance.o
2014-09-13 22:53:00 +00:00
# RarchDB
OBJ += rarchdb/bintree.o \
rarchdb/db_parser.o \
rarchdb/rarchdb.o \
rarchdb/rmsgpack.o \
rarchdb/rmsgpack_dom.o
2014-09-14 00:52:30 +00:00
# Miscellaneous
2014-09-14 02:37:57 +00:00
ifeq ($(HAVE_STDIN_CMD), 1)
DEFINES += -DHAVE_COMMAND -DHAVE_STDIN_CMD
endif
2014-09-14 00:52:30 +00:00
ifeq ($(HAVE_PYTHON), 1)
DEFINES += $(PYTHON_CFLAGS) -Wno-unused-parameter
LIBS += $(PYTHON_LIBS)
2015-01-12 15:00:13 +00:00
OBJ += gfx/video_state_python.o
2014-09-14 00:52:30 +00:00
endif
2014-09-14 01:58:49 +00:00
ifeq ($(HAVE_EMSCRIPTEN), 1)
OBJ += frontend/drivers/platform_emscripten.o \
2015-01-12 05:16:52 +00:00
input/drivers/rwebinput_input.o \
2015-01-12 04:05:56 +00:00
audio/drivers/rwebaudio.o \
2015-01-12 18:04:12 +00:00
camera/drivers/rwebcam.o
2014-09-14 01:58:49 +00:00
endif
2014-09-14 00:52:30 +00:00
# Audio
#
ifeq ($(HAVE_COREAUDIO), 1)
2015-01-12 04:05:56 +00:00
OBJ += audio/drivers/coreaudio.o
2014-09-14 00:52:30 +00:00
LIBS += -framework CoreServices -framework CoreAudio -framework AudioUnit
endif
ifeq ($(HAVE_OSS), 1)
2015-01-12 04:05:56 +00:00
OBJ += audio/drivers/oss.o
2014-09-14 00:52:30 +00:00
endif
ifeq ($(HAVE_OSS_BSD), 1)
2015-01-12 04:05:56 +00:00
OBJ += audio/drivers/oss.o
2014-09-14 00:52:30 +00:00
endif
ifeq ($(HAVE_ALSA), 1)
2015-01-12 04:05:56 +00:00
OBJ += audio/drivers/alsa.o audio/drivers/alsathread.o
2014-09-14 00:52:30 +00:00
LIBS += $(ALSA_LIBS)
DEFINES += $(ALSA_CFLAGS)
endif
ifeq ($(HAVE_ROAR), 1)
2015-01-12 04:05:56 +00:00
OBJ += audio/drivers/roar.o
2014-09-14 00:52:30 +00:00
LIBS += $(ROAR_LIBS)
DEFINES += $(ROAR_CFLAGS)
endif
ifeq ($(HAVE_AL), 1)
2015-01-12 04:05:56 +00:00
OBJ += audio/drivers/openal.o
2014-09-14 00:52:30 +00:00
ifeq ($(OSX),1)
LIBS += -framework OpenAL
else
LIBS += -lopenal
endif
endif
ifeq ($(HAVE_JACK),1)
2015-01-12 04:05:56 +00:00
OBJ += audio/drivers/jack.o
2014-09-14 00:52:30 +00:00
LIBS += $(JACK_LIBS)
DEFINES += $(JACK_CFLAGS)
endif
ifeq ($(HAVE_PULSE), 1)
2015-01-12 04:05:56 +00:00
OBJ += audio/drivers/pulse.o
2014-09-14 00:52:30 +00:00
LIBS += $(PULSE_LIBS)
DEFINES += $(PULSE_CFLAGS)
endif
ifeq ($(HAVE_OSS_LIB), 1)
LIBS += -lossaudio
endif
ifeq ($(HAVE_RSOUND), 1)
OBJ += audio/rsound.o
DEFINES += $(RSOUND_CFLAGS)
LIBS += $(RSOUND_LIBS)
endif
ifeq ($(HAVE_DSOUND), 1)
2015-01-12 04:05:56 +00:00
OBJ += audio/drivers/dsound.o
2014-09-14 00:52:30 +00:00
DEFINES += -DHAVE_DSOUND
LIBS += -ldxguid -ldsound
endif
ifeq ($(HAVE_XAUDIO), 1)
2015-01-12 04:05:56 +00:00
OBJ += audio/drivers/xaudio.o audio/xaudio-c/xaudio-c.o
2014-09-14 00:52:30 +00:00
DEFINES += -DHAVE_XAUDIO
LIBS += -lole32
endif
# Audio Resamplers
ifeq ($(HAVE_NEON),1)
2015-01-12 21:11:13 +00:00
OBJ += audio/drivers_resampler/sinc_neon.o
OBJ += audio/drivers_resampler/cc_resampler_neon.o
2014-09-14 00:52:30 +00:00
# When compiled without this, tries to attempt to compile sinc lerp,
# which will error out
#
# TODO - we need to make quality levels of sinc
# runtime toggleable instead of going by compile-time
# defines
DEFINES += -DSINC_LOWER_QUALITY
endif
OBJ += audio/utils.o
ifeq ($(HAVE_NEON),1)
OBJ += audio/utils_neon.o
endif
2014-09-13 22:53:00 +00:00
ifeq ($(HAVE_RGUI), 1)
2014-10-28 18:54:23 +00:00
OBJ += menu/disp/rgui.o
2014-09-13 22:53:00 +00:00
DEFINES += -DHAVE_MENU -DHAVE_RGUI
HAVE_MENU_COMMON = 1
ifeq ($(HAVE_GLUI), 1)
2014-10-28 18:54:23 +00:00
OBJ += menu/disp/glui.o
2014-09-13 22:53:00 +00:00
DEFINES += -DHAVE_GLUI
endif
2014-10-08 23:21:22 +00:00
ifeq ($(HAVE_XMB), 1)
2014-10-28 18:54:23 +00:00
OBJ += menu/disp/xmb.o
2014-10-08 23:21:22 +00:00
DEFINES += -DHAVE_XMB
endif
2014-09-13 22:53:00 +00:00
ifeq ($(HAVE_LAKKA), 1)
2014-10-28 18:54:23 +00:00
OBJ += menu/backend/menu_lakka_backend.o \
menu/disp/lakka.o
2014-09-13 22:53:00 +00:00
DEFINES += -DHAVE_LAKKA
endif
endif
ifeq ($(HAVE_MENU_COMMON), 1)
2014-10-28 18:54:23 +00:00
OBJ += menu/backend/menu_common_backend.o \
menu/menu_input.o \
2015-01-10 03:53:37 +00:00
menu/menu.o \
menu/menu_common_list.o \
2014-10-28 18:54:23 +00:00
menu/menu_navigation.o \
menu/menu_action.o \
menu/menu_shader.o \
menu/menu_entries.o \
menu/menu_entries_cbs.o \
menu/menu_list.o \
menu/menu_animation.o
2014-09-13 22:53:00 +00:00
endif
2014-09-13 23:01:52 +00:00
ifeq ($(HAVE_FREETYPE), 1)
OBJ += gfx/fonts/freetype.o
LIBS += $(FREETYPE_LIBS)
DEFINES += $(FREETYPE_CFLAGS)
endif
ifeq ($(HAVE_THREADS), 1)
OBJ += autosave.o libretro-sdk/rthreads/rthreads.o gfx/video_thread_wrapper.o audio/audio_thread_wrapper.o
2014-09-13 23:01:52 +00:00
DEFINES += -DHAVE_THREADS
ifeq ($(findstring Haiku,$(OS)),)
LIBS += -lpthread
endif
endif
2014-09-13 23:58:57 +00:00
2014-09-14 00:52:30 +00:00
ifeq ($(HAVE_COMMAND), 1)
OBJ += command.o
endif
2014-09-13 23:58:57 +00:00
#Input
2014-09-14 01:22:04 +00:00
ifeq ($(HAVE_WAYLAND), 1)
2015-01-12 05:16:52 +00:00
#OBJ += input/drivers/wayland.o
2014-09-14 01:22:04 +00:00
DEFINES += $(WAYLAND_CFLAGS)
LIBS += $(WAYLAND_LIBS)
endif
2014-09-14 00:52:30 +00:00
ifeq ($(HAVE_DINPUT), 1)
LIBS += -ldinput8 -ldxguid -lole32
DEFINES += -DHAVE_DINPUT
2015-01-12 05:16:52 +00:00
OBJ += input/drivers/dinput.o
2014-09-14 00:52:30 +00:00
JOYCONFIG_LIBS += -ldinput8 -ldxguid -lole32
endif
2014-09-13 23:58:57 +00:00
ifeq ($(HAVE_WINXINPUT), 1)
DEFINES += -DHAVE_WINXINPUT -DHAVE_BUILTIN_AUTOCONFIG
OBJ += input/drivers_joypad/winxinput_joypad.o \
input/autoconf/builtin_win.o
2014-09-13 23:58:57 +00:00
endif
ifeq ($(HAVE_X11), 1)
2015-01-12 05:16:52 +00:00
OBJ += input/drivers/x11_input.o gfx/context/x11_common.o input/keyboard_event_x11.o
2014-09-13 23:58:57 +00:00
LIBS += $(X11_LIBS) $(XEXT_LIBS) $(XF86VM_LIBS) $(XINERAMA_LIBS)
DEFINES += $(X11_CFLAGS) $(XEXT_CFLAGS) $(XF86VM_CFLAGS) $(XINERAMA_CFLAGS)
endif
ifeq ($(HAVE_XKBCOMMON), 1)
DEFINES += $(XKBCOMMON_CFLAGS)
OBJ += input/keyboard_event_xkb.o
2014-09-13 23:58:57 +00:00
LIBS += $(XKBCOMMON_LIBS)
endif
ifeq ($(HAVE_UDEV), 1)
DEFINES += $(UDEV_CFLAGS)
LIBS += $(UDEV_LIBS)
JOYCONFIG_LIBS += $(UDEV_LIBS)
OBJ += input/drivers/udev_input.o input/drivers_joypad/udev_joypad.o
2014-09-13 23:58:57 +00:00
endif
2014-10-04 21:04:38 +00:00
ifeq ($(HAVE_PARPORT), 1)
OBJ += input/drivers_joypad/parport_joypad.o
2014-10-04 21:04:38 +00:00
endif
2014-09-14 00:52:30 +00:00
2014-09-13 23:58:57 +00:00
# Video
2014-09-14 01:44:54 +00:00
#
ifeq ($(HAVE_OPENGL), 1)
2014-09-15 15:07:17 +00:00
DEFINES += -DHAVE_OPENGL -DHAVE_GLSL
OBJ += gfx/drivers/gl.o \
2014-10-02 11:32:42 +00:00
gfx/gl_common.o \
gfx/video_context_driver.o \
2014-10-07 12:31:10 +00:00
gfx/context/gfx_null_ctx.o \
2014-09-14 01:44:54 +00:00
gfx/fonts/gl_font.o \
gfx/fonts/gl_raster_font.o \
libretro-sdk/gfx/math/matrix_4x4.o \
2015-01-12 15:00:13 +00:00
gfx/video_state_tracker.o \
libretro-sdk/glsym/rglgen.o
2014-09-14 01:44:54 +00:00
ifeq ($(HAVE_KMS), 1)
OBJ += gfx/context/drm_egl_ctx.o
DEFINES += $(GBM_CFLAGS) $(DRM_CFLAGS) $(EGL_CFLAGS)
LIBS += $(GBM_LIBS) $(DRM_LIBS) $(EGL_LIBS)
endif
ifeq ($(HAVE_VIDEOCORE), 1)
OBJ += gfx/context/vc_egl_ctx.o
DEFINES += $(EGL_CFLAGS)
LIBS += $(EGL_LIBS)
endif
ifeq ($(HAVE_EMSCRIPTEN), 1)
OBJ += gfx/context/emscriptenegl_ctx.o
endif
ifeq ($(HAVE_MALI_FBDEV), 1)
OBJ += gfx/context/mali_fbdev_ctx.o
DEFINES += $(EGL_CFLAGS)
LIBS += $(EGL_LIBS)
2014-09-14 01:44:54 +00:00
endif
ifeq ($(HAVE_VIVANTE_FBDEV), 1)
OBJ += gfx/context/vivante_fbdev_ctx.o
DEFINES += $(EGL_CFLAGS)
LIBS += $(EGL_LIBS)
endif
ifeq ($(HAVE_X11), 1)
ifeq ($(HAVE_GLES), 0)
OBJ += gfx/context/glx_ctx.o
endif
ifeq ($(HAVE_EGL), 1)
OBJ += gfx/context/xegl_ctx.o
DEFINES += $(EGL_CFLAGS)
LIBS += $(EGL_LIBS)
endif
endif
ifeq ($(HAVE_WAYLAND), 1)
ifeq ($(HAVE_EGL), 1)
OBJ += gfx/context/wayland_ctx.o
endif
endif
ifeq ($(HAVE_GLES), 1)
LIBS += $(GLES_LIBS)
DEFINES += $(GLES_CFLAGS) -DHAVE_OPENGLES -DHAVE_OPENGLES2
ifeq ($(HAVE_GLES3), 1)
DEFINES += -DHAVE_OPENGLES3
endif
OBJ += libretro-sdk/glsym/glsym_es2.o
2014-09-14 01:44:54 +00:00
else
DEFINES += -DHAVE_GL_SYNC
OBJ += libretro-sdk/glsym/glsym_gl.o
2014-09-14 01:44:54 +00:00
ifeq ($(OSX), 1)
LIBS += -framework OpenGL
else ifneq ($(findstring Win32,$(OS)),)
LIBS += -lopengl32 -lgdi32 -lcomdlg32
OBJ += gfx/context/wgl_ctx.o
2014-09-14 01:44:54 +00:00
else
LIBS += -lGL
endif
endif
2014-10-01 22:45:11 +00:00
OBJ += gfx/shader/shader_glsl.o
2014-09-14 01:44:54 +00:00
DEFINES += -DHAVE_GLSL
endif
2014-09-13 23:58:57 +00:00
ifeq ($(HAVE_SDL2), 1)
HAVE_SDL=0
endif
2014-09-14 01:22:04 +00:00
ifeq ($(HAVE_SDL), 1)
OBJ += gfx/drivers/sdl_gfx.o input/drivers/sdl_input.o input/drivers_joypad/sdl_joypad.o audio/drivers/sdl_audio.o
2014-09-14 01:22:04 +00:00
ifeq ($(HAVE_OPENGL), 1)
OBJ += gfx/context/sdl_gl_ctx.o
endif
JOYCONFIG_LIBS += $(SDL_LIBS)
DEFINES += $(SDL_CFLAGS) $(BSD_LOCAL_INC)
LIBS += $(SDL_LIBS)
endif
ifeq ($(HAVE_SDL2), 1)
OBJ += gfx/drivers/sdl2_gfx.o input/drivers/sdl_input.o input/drivers_joypad/sdl_joypad.o audio/drivers/sdl_audio.o
2014-09-14 01:22:04 +00:00
ifeq ($(HAVE_OPENGL), 1)
OBJ += gfx/context/sdl_gl_ctx.o
endif
JOYCONFIG_LIBS += $(SDL2_LIBS)
DEFINES += $(SDL2_CFLAGS) $(BSD_LOCAL_INC)
LIBS += $(SDL2_LIBS)
HAVE_SDL = 0
endif
2014-09-14 00:52:30 +00:00
ifeq ($(HAVE_OMAP), 1)
OBJ += gfx/drivers/omap_gfx.o
2014-09-14 00:52:30 +00:00
endif
ifeq ($(HAVE_EXYNOS), 1)
OBJ += gfx/drivers/exynos_gfx.o mem/neon/memcpy-neon.o
2014-09-14 00:52:30 +00:00
LIBS += $(DRM_LIBS) $(EXYNOS_LIBS)
DEFINES += $(DRM_CFLAGS) $(EXYNOS_CFLAGS)
endif
2014-09-13 23:58:57 +00:00
ifeq ($(HAVE_VG), 1)
OBJ += gfx/drivers/vg.o libretro-sdk/gfx/math/matrix_3x3.o
2014-09-13 23:58:57 +00:00
DEFINES += $(VG_CFLAGS)
LIBS += $(VG_LIBS)
endif
ifeq ($(HAVE_XVIDEO), 1)
OBJ += gfx/drivers/xvideo.o
2014-09-13 23:58:57 +00:00
LIBS += $(XVIDEO_LIBS)
DEFINES += $(XVIDEO_CFLAGS)
endif
2014-09-14 00:05:17 +00:00
ifeq ($(HAVE_CG), 1)
DEFINES += -DHAVE_CG
2014-10-02 13:19:21 +00:00
OBJ += gfx/shader/shader_gl_cg.o
2014-09-16 20:45:45 +00:00
LIBS += $(CG_LIBS)
2014-09-14 00:05:17 +00:00
endif
ifeq ($(HAVE_D3D9), 1)
2014-09-14 04:45:47 +00:00
OBJ += gfx/d3d/d3d.o \
gfx/d3d/render_chain.o \
gfx/d3d/d3d_wrapper.o \
2014-09-14 00:05:17 +00:00
gfx/fonts/d3d_font.o \
gfx/fonts/d3d_w32_font.o \
gfx/context/d3d_ctx.o
DEFINES += -DHAVE_WIN32_D3D9
LIBS += -ld3d9 -ld3dx9 -ldxguid
2014-09-16 20:45:45 +00:00
ifeq ($(HAVE_CG), 1)
LIBS += -lcgD3D9
endif
2014-09-14 00:05:17 +00:00
endif
2014-09-14 00:15:41 +00:00
2014-12-15 20:34:22 +00:00
#ifeq ($(HAVE_LIBXML2), 1)
#LIBS += $(LIBXML2_LIBS)
#DEFINES += $(LIBXML2_CFLAGS)
#else
#OBJ += compat/rxml/rxml.o
#endif
2014-09-14 00:15:41 +00:00
# Compression/Archive
ifeq ($(HAVE_7ZIP),1)
CFLAGS += -I./deps/7zip
HAVE_COMPRESSION = 1
DEFINES += -DHAVE_7ZIP
7ZOBJ = deps/7zip/7zIn.o \
deps/7zip/7zAlloc.o \
deps/7zip/Bra86.o \
deps/7zip/CpuArch.o \
deps/7zip/7zFile.o \
deps/7zip/7zStream.o \
deps/7zip/7zBuf2.o \
deps/7zip/LzmaDec.o \
deps/7zip/7zCrcOpt.o \
deps/7zip/Bra.o \
deps/7zip/7zDec.o \
deps/7zip/Bcj2.o \
deps/7zip/7zCrc.o \
deps/7zip/Lzma2Dec.o \
deps/7zip/7zBuf.o \
decompress/7zip_support.o
OBJ += $(7ZOBJ)
endif
2014-09-14 00:52:30 +00:00
2014-09-14 02:50:10 +00:00
ifeq ($(HAVE_ZLIB), 1)
ZLIB_OBJS = decompress/zip_support.o
OBJ += gfx/rpng/rpng.o file_extract.o
OBJ += $(ZLIB_OBJS)
DEFINES += -DHAVE_ZLIB
HAVE_COMPRESSION = 1
ifeq ($(WANT_MINIZ), 1)
DEFINES += -DWANT_MINIZ
else
LIBS += -lz
HAVE_ZLIB_DEFLATE = 1
endif
endif
2014-09-16 17:20:15 +00:00
ifdef HAVE_COMPRESSION
DEFINES += -DHAVE_COMPRESSION
endif
2014-09-14 02:50:10 +00:00
ifeq ($(WANT_MINIZ),1)
OBJ += deps/rzlib/adler32.o \
deps/rzlib/compress.o \
deps/rzlib/crc32.o \
deps/rzlib/deflate.o \
deps/rzlib/gzclose.o \
deps/rzlib/gzlib.o \
deps/rzlib/gzread.o \
deps/rzlib/gzwrite.o \
deps/rzlib/inffast.o \
deps/rzlib/inflate.o \
deps/rzlib/inftrees.o \
deps/rzlib/trees.o \
deps/rzlib/uncompr.o \
deps/rzlib/zutil.o \
deps/rzlib/ioapi.o \
deps/rzlib/unzip.o
else
ifeq ($(HAVE_ZLIB),1)
2014-09-14 02:50:10 +00:00
ZLIB_OBJS = deps/rzlib/unzip.o deps/rzlib/ioapi.o
OBJ += $(ZLIB_OBJS)
HAVE_ZLIB_DEFLATE = 1
endif
endif
2014-09-14 02:50:10 +00:00
ifeq ($(HAVE_ZLIB_DEFLATE),1)
DEFINES += -DHAVE_ZLIB_DEFLATE
endif
2014-09-14 00:52:30 +00:00
# Camera
ifeq ($(HAVE_V4L2),1)
2015-01-12 18:04:12 +00:00
OBJ += camera/drivers/video4linux2.o
2014-09-14 00:52:30 +00:00
DEFINES += -DHAVE_V4L2
endif
2014-09-14 01:38:36 +00:00
# Netplay
ifeq ($(HAVE_NETPLAY), 1)
DEFINES += -DHAVE_NETPLAY -DHAVE_NETWORK_CMD
OBJ += netplay.o
2014-12-20 21:11:32 +00:00
OBJ += http_lib.o \
http_intf.o
2014-09-14 01:38:36 +00:00
ifneq ($(findstring Win32,$(OS)),)
LIBS += -lws2_32
endif
endif
ifneq ($(findstring Win32,$(OS)),)
2014-09-14 20:50:29 +00:00
OBJ += media/rarch.o \
input/keyboard_event_win32.o
endif
2014-09-14 02:43:18 +00:00
# Record
ifeq ($(HAVE_FFMPEG), 1)
OBJ += record/drivers/ffmpeg.o
2014-09-14 02:43:18 +00:00
LIBS += $(AVCODEC_LIBS) $(AVFORMAT_LIBS) $(AVUTIL_LIBS) $(SWSCALE_LIBS) $(FFMPEG_LIBS)
DEFINES += $(AVCODEC_CFLAGS) $(AVFORMAT_CFLAGS) $(AVUTIL_CFLAGS) $(SWSCALE_CFLAGS)
DEFINES += -DHAVE_FFMPEG -Iffmpeg
endif
2014-09-16 17:20:33 +00:00
ifeq ($(HAVE_COMPRESSION), 1)
DEFINES += -DHAVE_COMPRESSION
endif
2014-10-16 05:34:59 +00:00
# Joyconfig binary
JOYCONFIG_OBJ += tools/retroarch-joyconfig-griffin.o