compiler switch for c99
This commit is contained in:
parent
19e32f9416
commit
b1845aad5f
2 changed files with 4 additions and 4 deletions
2
Makefile
2
Makefile
|
@ -1,5 +1,5 @@
|
||||||
CC = gcc
|
CC = gcc
|
||||||
CFLAGS = -O0 -g3 -Wall
|
CFLAGS = -O0 -g3 -Wall -std=c99
|
||||||
LFLAGS =
|
LFLAGS =
|
||||||
DEPS = protobuf.h
|
DEPS = protobuf.h
|
||||||
OBJS = protobuf.o varint.o
|
OBJS = protobuf.o varint.o
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
CC = gcc
|
CC = gcc
|
||||||
CFLAGS = -O0 -g3 -Wall -I../
|
CFLAGS = -O0 -g3 -Wall -I../ -std=c99
|
||||||
LFLAGS =
|
LFLAGS =
|
||||||
DEPS = ../protobuf.h
|
DEPS = ../protobuf.h
|
||||||
OBJS = testit.o ../protobuf.o ../varint.o Test1_protobuf.o Test2_protobuf.o Test3_protobuf.o
|
OBJS = testit.o ../protobuf.o ../varint.o Test1_protobuf.o Test2_protobuf.o Test3_protobuf.o
|
||||||
|
|
Loading…
Reference in a new issue