1
0
mirror of https://github.com/lxsang/antd-lua-plugin synced 2025-01-03 21:08:22 +01:00
antd-lua-plugin/lib/ffi/example/Makefile

7 lines
93 B
Makefile
Raw Normal View History

2019-04-30 20:09:07 +02:00
CC = gcc
main: lib.o
$(CC) -shared lib.o -o libtest.so
%.o: %.c
$(CC) -fPIC -c $< -o $@