diff options
author | jaseg <code@jaseg.net> | 2016-10-18 22:36:12 +0200 |
---|---|---|
committer | jaseg <code@jaseg.net> | 2016-10-18 22:36:12 +0200 |
commit | f090d7a2685966c7566c24307f89e7674164ec2a (patch) | |
tree | ed492096bf8552d4dc05ff8b98e7cf8d5e8f2e97 /Makefile | |
parent | b2bcc1125677d59918d91377669db377d12fa0f6 (diff) | |
download | cccb-klingel-f090d7a2685966c7566c24307f89e7674164ec2a.tar.gz cccb-klingel-f090d7a2685966c7566c24307f89e7674164ec2a.tar.bz2 cccb-klingel-f090d7a2685966c7566c24307f89e7674164ec2a.zip |
Fix Makefile for old gccs
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |