mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-03-12 18:14:25 +00:00
9 lines
129 B
Makefile
9 lines
129 B
Makefile
![]() |
NAME = libarmeilleure-jitsupport.dylib
|
||
|
|
||
|
all: ${NAME}
|
||
|
|
||
|
${NAME}:
|
||
|
clang -O3 -dynamiclib support.c -o ${NAME}
|
||
|
clean:
|
||
|
rm -f ${NAME}
|