summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorSteven G. Johnson <stevenj@mit.edu>2015-10-29 13:30:56 -0400
committerSteven G. Johnson <stevenj@mit.edu>2015-10-29 13:30:56 -0400
commite52c8c4c8f0f10aa71c8dbd633a359895157c871 (patch)
treef4b75a196aa210bf3606dd134d6f8183e45e0975 /Makefile
parent24515cbbe306568fa0a3646f1723b22373b91393 (diff)
parentf314738f718d27c777d7ae97c47664c716efd0f7 (diff)
downloadlibutf8proc-e52c8c4c8f0f10aa71c8dbd633a359895157c871.tar.gz
libutf8proc-e52c8c4c8f0f10aa71c8dbd633a359895157c871.tar.bz2
Merge pull request #55 from petercolberg/master
Do not export internal unsafe_encode_char()
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 29a3261..61e723a 100644
--- a/Makefile
+++ b/Makefile
@@ -10,7 +10,8 @@ INSTALL=install
CFLAGS ?= -O2
PICFLAG = -fPIC
C99FLAG = -std=c99
-UCFLAGS = $(CFLAGS) $(PICFLAG) $(C99FLAG) -DUTF8PROC_EXPORTS
+WCFLAGS = -Wall -Wmissing-prototypes -pedantic
+UCFLAGS = $(CFLAGS) $(PICFLAG) $(C99FLAG) $(WCFLAGS) -DUTF8PROC_EXPORTS
# shared-library version MAJOR.MINOR.PATCH ... this may be *different*
# from the utf8proc version number because it indicates ABI compatibility,