Skip to content

Commit beebcdb

Browse files
committed
Declare C99 compat
Silences warnings about //-style comments and long strings. Since kseq.h uses inline functions, a feature of C99, it's not useful pretending to be C89 compat (GCC's default).
1 parent cd8b0f8 commit beebcdb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PROGRAM_NAME = sickle
22
VERSION = 1.33
33
CC = gcc
4-
CFLAGS = -Wall -pedantic -DVERSION=$(VERSION)
4+
CFLAGS = -Wall -pedantic -std=c99 -DVERSION=$(VERSION)
55
DEBUG = -g
66
OPT = -O3
77
ARCHIVE = $(PROGRAM_NAME)_$(VERSION)

0 commit comments

Comments
 (0)