Don't build the lib when making static binaries

Without this, building on 64-bit systems will fail.
This commit is contained in:
Kill Your TV 2014-12-20 19:48:53 +00:00
parent e5c2022f71
commit e4cc15d19e

View File

@ -44,7 +44,9 @@ $(I2PD): $(patsubst %.cpp,obj/%.o,$(DAEMON_SRC))
$(CXX) -o $@ $^ $(LDLIBS) $(LDFLAGS)
$(SHLIB): $(patsubst %.cpp,obj/%.o,$(LIB_SRC))
ifneq ($(USE_STATIC),yes)
$(CXX) $(CXXFLAGS) $(NEEDED_CXXFLAGS) $(INCFLAGS) $(CPU_FLAGS) -shared -o $@ $^
endif
clean:
rm -fr obj $(I2PD) $(SHLIB)