summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorDaniel Jones <admin@danieljon.es>2019-06-05 08:30:32 +0930
committerDaniel Jones <admin@danieljon.es>2019-06-05 08:30:32 +0930
commit5dce12092ffdee3828f60e6757d00abdb9029463 (patch)
tree433a3a241631182e2d02853fa9911c57c824933d /makefile
parent3a5a97bd4b7d7a42bef9d3200946f406c1dfbb9d (diff)
downloadurlopener-5dce12092ffdee3828f60e6757d00abdb9029463.tar.gz
urlopener-5dce12092ffdee3828f60e6757d00abdb9029463.zip
now use c89 and -pedantic
Diffstat (limited to 'makefile')
-rw-r--r--makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/makefile b/makefile
index 468fe5d..1ae8576 100644
--- a/makefile
+++ b/makefile
@@ -1,7 +1,7 @@
TARGET = urlopen
LIBS =
CC = gcc
-CFLAGS = -g -Wall -Wextra -std=c99
+CFLAGS = -g -Wall -Wextra -std=c89 -pedantic
.PHONY: default all clean