You've already forked rdsspy-lua-host
mirror of
https://github.com/KubaPro010/rdsspy-lua-host.git
synced 2026-02-26 10:32:34 +01:00
12 lines
300 B
Makefile
12 lines
300 B
Makefile
liblua:
|
|
gcc -c lua/*.c
|
|
ar rcs liblua *.o
|
|
rm *.o
|
|
|
|
build: liblua
|
|
gcc -O2 -shared -static -o luahost.dll src/*.c liblua -lgdi32 -luser32 -lshell32 -Ilua \
|
|
-Wl,--add-stdcall-alias \
|
|
-ffunction-sections -fdata-sections
|
|
|
|
install: build
|
|
cp luahost.dll "/c/Program Files (x86)/RDS Spy/plugins"
|