diff options
author | Daniel Friesel <derf@finalrewind.org> | 2014-12-21 17:52:43 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2014-12-21 17:52:43 +0100 |
commit | 4dd3fef3763d0d48e5891ae211ebdbb9485d017d (patch) | |
tree | d562deb57e75d40490c69c91dacd1d0bad3d1a57 /Makefile | |
parent | 39c8b7e9b8dcb469dab73c5773fd98d4396113d8 (diff) |
now with assembly
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -6,7 +6,7 @@ AVRNM ?= avr-nm AVROBJCOPY ?= avr-objcopy AVROBJDUMP ?= avr-objdump -CFLAGS += -mmcu=attiny2313a -DF_CPU=20000000UL +CFLAGS += -mmcu=attiny2313a -DF_CPU=8000000UL #CFLAGS += -gdwarf-2 -fverbose-asm CFLAGS += -I. -std=gnu99 -Os -Wall -Wextra -pedantic CFLAGS += -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums @@ -25,8 +25,8 @@ AVRFLAGS += -U flash:w:main.hex ${AVROBJCOPY} -j .eeprom --set-section-flags=.eeprom="alloc,load" \ --change-section-lma .eeprom=0 -O ihex $< $@ -main.elf: main.c - ${AVRCC} ${CFLAGS} -o $@ ${@:.elf=.c} -Wl,-Map=main.map,--cref +main.elf: main.S + ${AVRCC} ${CFLAGS} -o $@ ${@:.elf=.S} -Wl,-Map=main.map,--cref avr-size -d $@ program: main.hex main.eep |