From d40b003f51f4b1b8ce324ce1487566daf308fb99 Mon Sep 17 00:00:00 2001 From: Erick Ahmed Date: Fri, 26 Dec 2025 16:07:17 +0100 Subject: [PATCH] Improve definitions --- src/Makefile | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/Makefile b/src/Makefile index 4b8ab72..dc9fc04 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,14 +1,14 @@ -MCU = attiny85 -F_CPU = 1000000UL -TARGET = clockinator -SRCS = clockinator.S -CC = avr-gcc -OBJCOPY = avr-objcopy -PORT = /dev/tty.usbmodem101 -BAUD = 19200 -PROGRAMMER = usbasp -AVRDUDE = avrdude -P $(PORT) -b $(BAUD) -CFLAGS = -mmcu=$(MCU) -Wall -Os -DF_CPU=$(F_CPU) +MCU = attiny85 +F_CPU = 1000000UL +TARGET = clockinator +SRCS = $(TARGET).S +CC = avr-gcc +OBJCOPY = avr-objcopy +PORT = /dev/tty.usbmodem101 +BAUD = 19200 +PROGRAMMER = usbasp +AVRDUDE = avrdude -P $(PORT) -b $(BAUD) +CFLAGS = -mmcu=$(MCU) -Wall -Os -DF_CPU=$(F_CPU) all: $(TARGET).hex