diff options
| author | Sudar <sudar@sudarmuthu.com> | 2012-05-05 16:03:40 +0530 |
|---|---|---|
| committer | Sudar <sudar@sudarmuthu.com> | 2012-05-05 16:03:40 +0530 |
| commit | 1750ef08a47503f1ccd6e42b2d2d546dca88c132 (patch) | |
| tree | 7d1be1590f8066d8cd98cbe7b12801589f56bd43 | |
| parent | db3a874e750d830a39e9478d34a52124b8e1f3bf (diff) | |
Prevent the *file-not-found* error if the depends.mk file is not needed
| -rw-r--r-- | arduino-mk/Arduino.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arduino-mk/Arduino.mk b/arduino-mk/Arduino.mk index 5261afa..125505b 100644 --- a/arduino-mk/Arduino.mk +++ b/arduino-mk/Arduino.mk @@ -690,4 +690,5 @@ monitor: .PHONY: all clean depends upload raw_upload reset reset_stty size show_boards monitor -include $(DEP_FILE) +# added - in the beginning, so that we don't get an error if the file is not present +-include $(DEP_FILE) |
