Skip to content

Commit

Permalink
Merge pull request #23 from apainintheneck/enable-werror-when-compili…
Browse files Browse the repository at this point in the history
…ng-extension

Enable -Werror when compiling extension
  • Loading branch information
apainintheneck authored Feb 6, 2024
2 parents 399d212 + 5fca3b7 commit fe8fe4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.PHONY: example extension lint fix test clean

CFLAGS = -Wall -Wextra -Wpedantic -c -std=c11 -O2
CFLAGS = -Wall -Wextra -Wpedantic -Werror -c -std=c11 -O2

default: extension lint test

Expand Down

0 comments on commit fe8fe4f

Please sign in to comment.