diff options
author | Li Jin <dragon-fly@qq.com> | 2021-03-29 14:53:30 +0800 |
---|---|---|
committer | Li Jin <dragon-fly@qq.com> | 2021-03-29 14:53:30 +0800 |
commit | 98debe328b443078aee6994af61d4ed05ac434d6 (patch) | |
tree | 5b4c9d7bc7c89cf51f148b0b8db9911d75a0398d /makefile | |
parent | 95df7ec689db4abc34f57a55897c63edd75db559 (diff) | |
download | yuescript-98debe328b443078aee6994af61d4ed05ac434d6.tar.gz yuescript-98debe328b443078aee6994af61d4ed05ac434d6.tar.bz2 yuescript-98debe328b443078aee6994af61d4ed05ac434d6.zip |
fix shared target for makefile.
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -199,7 +199,7 @@ endif | |||
199 | @echo -n "Total build time: " | 199 | @echo -n "Total build time: " |
200 | @$(END_TIME) | 200 | @$(END_TIME) |
201 | 201 | ||
202 | $(BUILD_PATH)/yue.so: src/yuescript/ast.cpp src/yuescript/yue_compiler.cpp src/yuescript/yue_parser.cpp src/yuescript/yue.cpp src/yuescript/parser.cpp | 202 | $(BUILD_PATH)/yue.so: src/yuescript/ast.cpp src/yuescript/yue_compiler.cpp src/yuescript/yue_parser.cpp src/yuescript/yuescript.cpp src/yuescript/parser.cpp |
203 | $(CMD_PREFIX)$(CXX) $(CXXFLAGS) -I $(SRC_PATH) -I $(LUAI) -L $(LUAL) -llua -o $@ -fPIC -shared $? | 203 | $(CMD_PREFIX)$(CXX) $(CXXFLAGS) -I $(SRC_PATH) -I $(LUAI) -L $(LUAL) -llua -o $@ -fPIC -shared $? |
204 | 204 | ||
205 | # Standard, non-optimized release build | 205 | # Standard, non-optimized release build |