mirror of
https://github.com/libretro/RetroArch.git
synced 2025-01-06 08:48:20 +00:00
18 lines
229 B
Makefile
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
|