Remove some dependencies from the program target in the Makefile
This commit is contained in:
parent
eff9f080b2
commit
f7df4ec29a
1 changed files with 3 additions and 2 deletions
|
@ -195,7 +195,7 @@ LDFLAGS += -Wl,--relax
|
||||||
# Type: avrdude -c ?
|
# Type: avrdude -c ?
|
||||||
# to get a full listing.
|
# to get a full listing.
|
||||||
#
|
#
|
||||||
AVRDUDE_PROGRAMMER = dragon_isp
|
AVRDUDE_PROGRAMMER = avrisp2
|
||||||
|
|
||||||
# com1 = serial port. Use lpt1 to connect to parallel port.
|
# com1 = serial port. Use lpt1 to connect to parallel port.
|
||||||
AVRDUDE_PORT = -P usb #-P com1 # programmer connected to serial device
|
AVRDUDE_PORT = -P usb #-P com1 # programmer connected to serial device
|
||||||
|
@ -338,7 +338,8 @@ gccversion :
|
||||||
|
|
||||||
|
|
||||||
# Program the device.
|
# Program the device.
|
||||||
program: $(TARGET).hex $(TARGET).eep
|
#program: $(TARGET).hex $(TARGET).eep
|
||||||
|
program:
|
||||||
$(AVRDUDE) $(AVRDUDE_FLAGS) $(AVRDUDE_WRITE_FLASH) $(AVRDUDE_WRITE_EEPROM)
|
$(AVRDUDE) $(AVRDUDE_FLAGS) $(AVRDUDE_WRITE_FLASH) $(AVRDUDE_WRITE_EEPROM)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue