RetroArch/cores/libretro-imageviewer/Makefile

21 lines
588 B
Makefile
Raw Normal View History

image_core.so: image_core.c
2017-12-15 09:12:01 +00:00
gcc \
-g \
2017-12-18 21:29:07 +00:00
-DHAVE_STB_IMAGE \
2017-12-15 09:12:01 +00:00
image_core.c \
2017-12-18 21:29:07 +00:00
-I../../libretro-common/include/ \
-I../../deps/stb/ \
../../libretro-common/compat/compat_strcasestr.c \
../../libretro-common/compat/compat_strl.c \
2017-12-15 09:12:01 +00:00
../../libretro-common/file/file_path.c \
2017-12-18 21:29:07 +00:00
../../libretro-common/file/retro_dirent.c \
2017-12-15 09:12:01 +00:00
../../libretro-common/lists/dir_list.c \
../../libretro-common/lists/string_list.c \
../../libretro-common/streams/file_stream.c \
../../libretro-common/vfs/vfs_implementation.c \
2017-12-15 09:12:01 +00:00
-shared \
-fPIC \
2017-12-18 21:29:07 +00:00
-Wl,--no-undefined \
-lm \
-o image_core.so