From 4f229e0b1083154ee033ca9c2fd5c5367e1621ae Mon Sep 17 00:00:00 2001 From: Linus Nordberg Date: Fri, 10 Jun 2016 16:01:35 +0200 Subject: Compile with -std=gnu99 and -Wpedantic. Can't use 'c99' since we're using asm(). --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8ac277b..3764fe4 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ CC = avr-gcc -CFLAGS = -Wall -Werror -mmcu=avr25 -D__AVR_ATtiny828__ +CFLAGS = -std=gnu99 -Wpedantic -Wall -Werror -mmcu=avr25 -D__AVR_ATtiny828__ OBJCOPY = avr-objcopy all: tamper.hex -- cgit v1.2.3