diff options
author | MITSUNARI Shigeo <herumi@nifty.com> | 2016-06-16 15:27:52 +0800 |
---|---|---|
committer | MITSUNARI Shigeo <herumi@nifty.com> | 2016-06-16 15:27:52 +0800 |
commit | fa88a3b8b85b22021d14c9fa3345d208cfc7b843 (patch) | |
tree | f95633f80a2694bdbfc08d150fc67ceef142f67c | |
parent | 55650e8782640a663313c8b61f1b8601551e6f29 (diff) | |
download | dexon-mcl-fa88a3b8b85b22021d14c9fa3345d208cfc7b843.tar.gz dexon-mcl-fa88a3b8b85b22021d14c9fa3345d208cfc7b843.tar.zst dexon-mcl-fa88a3b8b85b22021d14c9fa3345d208cfc7b843.zip |
-shared option is missed
-rw-r--r-- | java/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/Makefile b/java/Makefile index fbbe101..fcbd285 100644 --- a/java/Makefile +++ b/java/Makefile @@ -27,7 +27,7 @@ $(MCL_LIB): make -C .. $(TARGET): mcl_if_wrap.cxx $(MCL_LIB) - $(PRE)$(CXX) $< -o $@ $(CFLAGS) $(LDFLAGS) $(MCL_LIB) + $(PRE)$(CXX) $< -o $@ $(CFLAGS) $(LDFLAGS) $(MCL_LIB) -shared %.class: %.java |