aboutsummaryrefslogtreecommitdiffstats
path: root/os/common/ports
diff options
context:
space:
mode:
authorTheodore Ateba <tf.ateba@gmail.com>2017-09-16 14:02:09 +0000
committerTheodore Ateba <tf.ateba@gmail.com>2017-09-16 14:02:09 +0000
commit18d0b140b820fd4813bb0f705132ff5f6726e992 (patch)
treead33a586663868b89750775a2e568ffd3b3d6af4 /os/common/ports
parentb3588b34c05b305da750d2235526cd49857488dc (diff)
downloadChibiOS-18d0b140b820fd4813bb0f705132ff5f6726e992.tar.gz
ChibiOS-18d0b140b820fd4813bb0f705132ff5f6726e992.tar.bz2
ChibiOS-18d0b140b820fd4813bb0f705132ff5f6726e992.zip
AVR: Remove the programming target from the generic makefile rule.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10590 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/common/ports')
-rw-r--r--os/common/ports/AVR/compilers/GCC/rules.mk13
1 files changed, 0 insertions, 13 deletions
diff --git a/os/common/ports/AVR/compilers/GCC/rules.mk b/os/common/ports/AVR/compilers/GCC/rules.mk
index 5dc726a62..f5a105d73 100644
--- a/os/common/ports/AVR/compilers/GCC/rules.mk
+++ b/os/common/ports/AVR/compilers/GCC/rules.mk
@@ -143,9 +143,6 @@ POST_MAKE_ALL_RULE_HOOK:
$(OBJS): | $(BUILDDIR) $(OBJDIR) $(LSTDIR)
-#$(BUILDDIR):
-# @mkdir -p $(BUILDDIR)
-
$(BUILDDIR):
ifneq ($(USE_VERBOSE_COMPILE),yes)
@echo Compiler Options
@@ -280,16 +277,6 @@ clean: CLEAN_RULE_HOOK
CLEAN_RULE_HOOK:
#
-# Programming rules.
-#
-# TODO: Make this generic according tool used to program.(avr, bosac, etc...).
-program: $(BUILDDIR)/$(PROJECT).hex $(BUILDDIR)/$(PROJECT).eep
- @echo
- @echo Programming $(MCU) device.
- $(AVRDUDE) $(AVRDUDE_FLAGS) $(AVRDUDE_WRITE_FLASH) $(AVRDUDE_WRITE_EEPROM)
- @echo Done
-
-#
# Include the dependency files, should be the last of the makefile
#
-include $(shell mkdir .dep 2>/dev/null) $(wildcard .dep/*)