1
0
mirror of https://github.com/taigrr/tplinkController synced 2025-01-18 04:43:13 -08:00

Revert "Makefile: change C standard to Gnu99 from C99. This fixes issue #2."

Didn't fix the problem on all systems, so reverting...
This commit is contained in:
Jason Benaim 2019-07-19 12:45:23 -07:00
parent de6ac2b222
commit 0f1f472cf0

View File

@ -2,7 +2,7 @@ target ?= hs100
objects := $(patsubst %.c,%.o,$(wildcard *.c))
LDFLAGS=-lm
CFLAGS=-std=gnu99 -Os
CFLAGS=-std=c99 -Os
ifdef DEBUG
CFLAGS+=-Wall -Werror -ggdb
endif