mirror of
https://github.com/cloudwu/skynet.git
synced 2026-07-22 19:13:07 +00:00
9 lines
121 B
Makefile
9 lines
121 B
Makefile
all : luaseri.so
|
|
|
|
luaseri.so : serialize.c
|
|
gcc -Wall -fPIC -O2 -D LUAMODULE -o $@ --shared $^
|
|
|
|
clean :
|
|
rm luaseri.so
|
|
|