Skip to content

Commit

Permalink
no need to use a order-only prerequisite
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Voigt authored and Alexander Voigt committed Oct 13, 2015
1 parent 209453c commit a0e8be5
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions config/Makefile.in
Expand Up @@ -183,17 +183,17 @@ clean-dep:
depend: clean-dep
depend: $(ALLDEP)

%.d: %.cpp | $(DEPGEN_EXE)
$(DEPGEN) $(CPPFLAGS) $^ > $@
%.d: %.cpp $(DEPGEN)
$(DEPGEN) $(CPPFLAGS) $< > $@

%.d: %.c | $(DEPGEN_EXE)
$(DEPGEN) $(CPPFLAGS) $^ > $@
%.d: %.c $(DEPGEN)
$(DEPGEN) $(CPPFLAGS) $< > $@

%.d: %.f | $(DEPGEN_EXE)
$(DEPGEN) $(CPPFLAGS) $^ > $@
%.d: %.f $(DEPGEN)
$(DEPGEN) $(CPPFLAGS) $< > $@

%.d: %.F | $(DEPGEN_EXE)
$(DEPGEN) $(CPPFLAGS) $^ > $@
%.d: %.F $(DEPGEN)
$(DEPGEN) $(CPPFLAGS) $< > $@

clean-executables:
-rm -f $(ALLEXE)
Expand Down

0 comments on commit a0e8be5

Please sign in to comment.