aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Phillips <dbphillipsnz@gmail.com>2015-06-06 22:35:56 +1200
committerDavid Phillips <dbphillipsnz@gmail.com>2015-06-06 22:35:56 +1200
commitf87f0bada4d1b84f66cc1e45bcd51a82cdab4573 (patch)
treec06fb1be3f2ea495a4e2c8486cd46b1d80733025
parente4eb7d51b4d8d7cff6374cc42d2e5eef41792e5c (diff)
downloadfractal-gen-f87f0bada4d1b84f66cc1e45bcd51a82cdab4573.tar.xz
Added -Wextra
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index f952224..34a1f60 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
all: mbrot-gen
mbrot-gen: mbrot-gen.c
- $(CC) -o $@ $@.c -lm -lpthread -Wall
+ $(CC) -o $@ $@.c -lm -lpthread -Wall -Wextra
.PHONY: all clean