From 29b9ec0b5e7741dd7f356326e4c3959b5130f757 Mon Sep 17 00:00:00 2001 From: Alcaro Date: Fri, 15 Dec 2017 10:12:01 +0100 Subject: [PATCH] Create this thing because makefile --- cores/libretro-imageviewer/Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 cores/libretro-imageviewer/Makefile diff --git a/cores/libretro-imageviewer/Makefile b/cores/libretro-imageviewer/Makefile new file mode 100644 index 0000000000..5fc4be5e60 --- /dev/null +++ b/cores/libretro-imageviewer/Makefile @@ -0,0 +1,16 @@ +image_core.so: + gcc \ + image_core.c \ + ../../libretro-common/file/file_path.c \ + ../../libretro-common/lists/dir_list.c \ + ../../libretro-common/compat/compat_strl.c \ + ../../libretro-common/compat/compat_strcasestr.c \ + ../../libretro-common/lists/string_list.c \ + ../../libretro-common/file/retro_dirent.c \ + -o image_core.so \ + -DHAVE_STB_IMAGE \ + -I ../../libretro-common/include/ \ + -I../../deps/stb \ + -shared \ + -fPIC \ + -lm