From 3fec3c89fcef133998f195885ddc61ac6b6969e6 Mon Sep 17 00:00:00 2001 From: Brad Parker Date: Sat, 9 Feb 2019 22:24:28 -0500 Subject: [PATCH] gong: add Makefile --- cores/libretro-gong/Makefile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 cores/libretro-gong/Makefile diff --git a/cores/libretro-gong/Makefile b/cores/libretro-gong/Makefile new file mode 100644 index 0000000000..45b38098bf --- /dev/null +++ b/cores/libretro-gong/Makefile @@ -0,0 +1,17 @@ +gong.so: gong.c + gcc \ + -std=c89 \ + -pedantic \ + -Wall \ + -Wno-unused-variable \ + -g \ + gong.c \ + -I../../libretro-common/include/ \ + -shared \ + -fPIC \ + -Wl,--no-undefined \ + -lm \ + -o gong.so + +clean: + rm -f gong.so