Skip to content

Commit

Permalink
Merge pull request MarlinFirmware#270 from jothan/Marlin_v1
Browse files Browse the repository at this point in the history
Create an explicit rule for building applet/Marlin.cpp.
  • Loading branch information
ErikZalm committed Oct 17, 2012
2 parents bfdf093 + e4a5e33 commit ff14199
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Marlin/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,10 @@ applet/%.o: %.c Configuration.h Configuration_adv.h $(MAKEFILE)
$(Pecho) " CC $@"
$P $(CC) -MMD -c $(ALL_CFLAGS) $< -o $@

applet/%.o: applet/%.cpp Configuration.h Configuration_adv.h $(MAKEFILE)
$(Pecho) " CXX $@"
$P $(CXX) -MMD -c $(ALL_CXXFLAGS) $< -o $@

applet/%.o: %.cpp Configuration.h Configuration_adv.h $(MAKEFILE)
$(Pecho) " CXX $@"
$P $(CXX) -MMD -c $(ALL_CXXFLAGS) $< -o $@
Expand Down

0 comments on commit ff14199

Please sign in to comment.