mirror of
https://github.com/arduino/Arduino.git
synced 2024-11-30 11:24:12 +01:00
b2c43c2e55
(significant size impact: 14 bytes!)
Initialized "address" to eliminate compiler warning (4 bytes!)
Add "atmega168" as a more accurate target name than "diecimila"
(keep diecimila as well for backward compatibility)
Reduce the .hex and .lst targets that are stored in source control
to the three basics: atmega8, atmega168, atmega328. The other
targets remain in the makefile and makeall, but will need to be
built from source if wanted. Which should be less of a problem
now that the source is buildable without installing crosspack.
(cherry picked from commit 7b1ee0f1b0
)
21 lines
324 B
Bash
Executable File
21 lines
324 B
Bash
Executable File
#!/bin/bash
|
|
make clean
|
|
#
|
|
# The "big three" standard bootloaders.
|
|
make atmega8
|
|
make atmega168
|
|
make atmega328
|
|
#
|
|
# additional buildable platforms of
|
|
# somewhat questionable support level
|
|
make lilypad
|
|
make lilypad_resonator
|
|
make pro8
|
|
make pro16
|
|
make pro20
|
|
make atmega328_pro8
|
|
make sanguino
|
|
make mega
|
|
make atmega88
|
|
make luminet
|