mirror of
https://github.com/lxsang/antd-lua-plugin
synced 2025-01-01 03:58:22 +01:00
7 lines
93 B
Makefile
7 lines
93 B
Makefile
CC = gcc
|
|
main: lib.o
|
|
$(CC) -shared lib.o -o libtest.so
|
|
|
|
%.o: %.c
|
|
$(CC) -fPIC -c $< -o $@
|