RetroArch/cores/libretro-gong/Makefile
2019-02-09 22:24:48 -05:00

18 lines
229 B
Makefile

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