Skip to content

Commit

Permalink
makefile: Change compilation of shared objects
Browse files Browse the repository at this point in the history
  • Loading branch information
FabioLuporini committed Jun 28, 2016
1 parent 41fba5c commit f6d4a33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ sparsetiling: mklib
ar cru $(LIB)/libst.a $(ALL_OBJS)
ranlib $(LIB)/libst.a
ifeq ($(SLOPE_LIB),shared)
$(CXX) -shared -Wl,-soname,libst.so.1 -o $(LIB)/libst.so.1.0.1 $(ALL_OBJS)
$(CXX) -shared -Wl,-soname,libst.so -o $(LIB)/libst.so $(ALL_OBJS) $(METIS_LINK)
endif

tests: mklib
Expand Down

0 comments on commit f6d4a33

Please sign in to comment.