* reorder makefile rules : fix depends on header

pull/117/head
hagen 10 years ago
parent 0e212f29d0
commit ca2566e778

@ -25,11 +25,11 @@ all: obj $(SHLIB) $(I2PD)
obj:
mkdir -p obj
# weaker rule for building files without headers
obj/%.o : %.cpp
obj/%.o : %.cpp %.h
$(CXX) $(CXXFLAGS) $(INCFLAGS) -c -o $@ $<
obj/%.o : %.cpp %.h
# weaker rule for building files without headers
obj/%.o : %.cpp
$(CXX) $(CXXFLAGS) $(INCFLAGS) -c -o $@ $<
$(I2PD): $(patsubst %.cpp,obj/%.o,$(DAEMON_SRC))

Loading…
Cancel
Save