Skip to content

Commit

Permalink
Do not mention Makefile as dependency
Browse files Browse the repository at this point in the history
When editing the makefile one will be aware of the consequences and be
ready to manually clean.  Many changed to a makefile will be to add
targets, not to fiddle with compile-flags and in that situation it is
unnecessary to re-build all.
  • Loading branch information
biotty committed Nov 10, 2014
1 parent d4cd70a commit 9d48a7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sound/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ $(FUGE): setup.py $(SYNTH)
dirs:
@mkdir -p $(OBJDIR) $(LIBDIR) $(BINDIR)

$(OBJDIR)/%.o: %.cpp Makefile
$(OBJDIR)/%.o: %.cpp
$(CXX) -c -o $@ $< $(CXXFLAGS)

.PHONY:
Expand Down

0 comments on commit 9d48a7e

Please sign in to comment.