1
0
mirror of https://github.com/libretro/RetroArch synced 2025-02-15 09:40:11 +00:00

gong: add Makefile

This commit is contained in:
Brad Parker 2019-02-09 22:24:28 -05:00
parent 83497d5029
commit 3fec3c89fc

@ -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