aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Steven Schubiger <stsc@refcnt.org> 2014-01-19 17:41:25 +0100
committerGravatar Steven Schubiger <stsc@refcnt.org> 2014-01-19 17:41:25 +0100
commit7fa6356c30c8eb5988abe73ed47444327cbd6346 (patch)
tree45836ecf0e2ee959c57cc7f0db223c283219839d /Makefile
parentce660230531f9136b7cba705e6ae06a1e370ef74 (diff)
downloadcolorize-7fa6356c30c8eb5988abe73ed47444327cbd6346.tar.gz
colorize-7fa6356c30c8eb5988abe73ed47444327cbd6346.tar.bz2
Compile with -ansi -pedantic
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 7fa8447..6283a0f 100644
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,7 @@
SHELL=/bin/sh
CC=gcc
-CFLAGS=-Wall -Wextra -Wformat -Wswitch-default -Wuninitialized -Wunused -Wno-unused-function -Wno-unused-parameter
+CFLAGS=-ansi -pedantic
colorize: colorize.c
$(CC) $(CFLAGS) -o colorize colorize.c -DCFLAGS="$(CFLAGS)"