compile as C99

This commit is contained in:
Connor Olding 2017-04-24 18:21:38 +00:00
parent 81a33946da
commit cbd7761803
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ PROGRAM = crc32
all: $(PROGRAM)
$(PROGRAM): main.c
$(CC) -o $@ -Wall -Winline -std=gnu11 $(CFLAGS) $(LDFLAGS) $^
$(CC) -o $@ -Wall -Winline -std=c99 $(CFLAGS) $(LDFLAGS) $^
clean:
-rm -f $(PROGRAM)