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