8ac5e011d6
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
8 lines
199 B
Makefile
8 lines
199 B
Makefile
|
|
LUA_SO=liblua.so
|
|
|
|
$(LUA_SO): $(CORE_O) $(LIB_O)
|
|
$(CC) -shared -ldl -Wl,-soname,$(LUA_SO).$(V) -o $@.$(R) $? -lm $(MYLDFLAGS)
|
|
ln -sf $(LUA_SO).$(R) $(LUA_SO).$(V)
|
|
ln -sf $(LUA_SO).$(R) $(LUA_SO)
|
|
|