* almost fixed static linking

This commit is contained in:
hagen 2014-12-12 08:53:17 +00:00
parent 05a62af99b
commit cf8e229098
2 changed files with 5 additions and 5 deletions

View file

@ -33,10 +33,10 @@ obj/%.o : %.cpp %.h
$(CXX) $(CXXFLAGS) $(INCFLAGS) -c -o $@ $<
$(I2PD): $(patsubst %.cpp,obj/%.o,$(DAEMON_SRC))
$(CXX) -o $@ $(LDLIBS) $(LDFLAGS) $^
$(CXX) -o $@ $^ $(LDFLAGS) $(LDLIBS)
$(SHLIB): $(patsubst %.cpp,obj/%.o,$(LIB_SRC))
$(CXX) -o $@ -shared $(CXXFLAGS) $(INCFLAGS) $^
$(CXX) -o $@ $^ $(LDFLAGS) $(LDLIBS)
clean:
rm -fr obj $(I2PD) $(SHLIB)