Skip to content

Instantly share code, notes, and snippets.

@dagon666
Created September 21, 2013 21:09
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dagon666/6654222 to your computer and use it in GitHub Desktop.
Save dagon666/6654222 to your computer and use it in GitHub Desktop.
Pure C Arduino generic Makefile
TARGET=blink
SOURCES=blink.c
DEPS=
COBJ=$(SOURCES:.c=.o)
CC=avr-gcc
OBJC=avr-objcopy
MCU=atmega328p
CFLAGS=-I. -Wall -Os -DF_CPU=16000000UL
LDFLAGS=
ISPPORT=/dev/ttyACM0
ISPDIR=/usr/share/arduino/hardware/tools
ISP=$(ISPDIR)/avrdude
ISPFLAGS=-c arduino -p $(MCU) -P $(ISPPORT) -b 115200 -C $(ISPDIR)/avrdude.conf
all: $(TARGET)
%.o: %.c $(DEPS)
@echo -e "\tCC" $<
@$(CC) -mmcu=$(MCU) -c -o $@ $< $(CFLAGS)
$(TARGET): $(COBJ)
@echo -e "\tLINKING CC" $<
@$(CC) -mmcu=$(MCU) -o $(TARGET) $(COBJ) $(LDFLAGS)
$(OBJC) -O ihex -R .eeprom $(TARGET) $(TARGET).hex
clean:
@echo ========== cleanup ==========
rm -rf *.o *.hex $(TARGET)
read:
$(ISP) $(ISPFLAGS) -U flash:r:$(TARGET)_backup.hex:i
install:
$(ISP) $(ISPFLAGS) -U flash:w:$(TARGET).hex
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment