Skip to content

Commit

Permalink
Enable (almost) all warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
markusfisch committed Jun 2, 2016
1 parent cf81a3f commit 2ff5025
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
LIBNAME=libhttp
OBJECTS=http.o
FLAGS=-O2
FLAGS=-O2 -Wall -Wextra

.c.o:
$(CC) -c $< -o $@ $(FLAGS)
Expand Down
2 changes: 1 addition & 1 deletion test/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
BIN=http
OBJECTS=main.o
LIBS=-L.. -lhttp
FLAGS=-O2 -I..
FLAGS=-O2 -I.. -Wall -Wextra

.c.o: $(OBJECTS)
$(CC) -c $< -o $@ $(FLAGS)
Expand Down

0 comments on commit 2ff5025

Please sign in to comment.