mirror of
https://github.com/lxsang/antd-lua-plugin
synced 2025-01-04 05:18:21 +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 $@
|