diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2010-08-03 11:13:06 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2010-08-03 11:13:06 +0000 |
commit | 98947e3750e07054f9da46af82225e9ef89ed656 (patch) | |
tree | 4cfa0d064d635eccc620b1b96d4e9b8c671d0d6d /Demos/Device/Incomplete/Sideshow/makefile | |
parent | 48c5cdced47897934d8473a3097181d0e9ca8b4c (diff) | |
download | lufa-98947e3750e07054f9da46af82225e9ef89ed656.tar.gz lufa-98947e3750e07054f9da46af82225e9ef89ed656.tar.bz2 lufa-98947e3750e07054f9da46af82225e9ef89ed656.zip |
Ensure all demos now compile in C99 standards mode, and not GNU99 (C99 + GNU extensions).
Diffstat (limited to 'Demos/Device/Incomplete/Sideshow/makefile')
-rw-r--r-- | Demos/Device/Incomplete/Sideshow/makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Demos/Device/Incomplete/Sideshow/makefile b/Demos/Device/Incomplete/Sideshow/makefile index f0782f183..1565b991e 100644 --- a/Demos/Device/Incomplete/Sideshow/makefile +++ b/Demos/Device/Incomplete/Sideshow/makefile @@ -179,7 +179,7 @@ EXTRAINCDIRS = $(LUFA_PATH)/ # gnu89 = c89 plus GCC extensions # c99 = ISO C99 standard (not yet fully implemented) # gnu99 = c99 plus GCC extensions -CSTANDARD = -std=gnu99 +CSTANDARD = -std=c99 # Place -D or -U options here for C sources |