Commit f27c07273d055fa46e91e3ae3fc886a35356ee50

Ramiro Polla 2008-12-09T21:02:30

Print all compiler warnings.

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/Makefile b/Makefile
index abeab7e..147df92 100644
--- a/Makefile
+++ b/Makefile
@@ -28,7 +28,7 @@ endif
 all: $(TARGETS)
 
 dlfcn.o:
-	$(CC) -o dlfcn.o -c dlfcn.c -O3 -fomit-frame-pointer
+	$(CC) -o dlfcn.o -c dlfcn.c -Wall -O3 -fomit-frame-pointer
 
 libdl.a: dlfcn.o
 	ar cru libdl.a dlfcn.o