From f090d7a2685966c7566c24307f89e7674164ec2a Mon Sep 17 00:00:00 2001 From: jaseg Date: Tue, 18 Oct 2016 22:36:12 +0200 Subject: Fix Makefile for old gccs --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6bcec57..48080bf 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ F_CPU = 16000000 DEVICE = atmega168 -CFLAGS = -g2 -mmcu=$(DEVICE) -DF_CPU=$(F_CPU) +CFLAGS = -g2 -mmcu=$(DEVICE) -DF_CPU=$(F_CPU) -std=c99 CFLAGS+= -Os -ffunction-sections -fdata-sections -fpack-struct -fno-move-loop-invariants -fno-tree-scev-cprop -fno-inline-small-functions CFLAGS+= -Wall -Wno-pointer-to-int-cast #CFLAGS+= -Wa,-ahls=$<.lst -- cgit