diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2023-06-23 15:04:04 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2023-06-23 15:04:04 -0300 |
commit | 097bebd29949edf6ed7bd55d8fb21c477ac85236 (patch) | |
tree | 6166b0b8e3bc9c1f18cf77f983c8bfbff98481ee /makefile | |
parent | 664da61c079f762d835ea6f875cdf3da96982bab (diff) | |
download | lpeg-097bebd29949edf6ed7bd55d8fb21c477ac85236.tar.gz lpeg-097bebd29949edf6ed7bd55d8fb21c477ac85236.tar.bz2 lpeg-097bebd29949edf6ed7bd55d8fb21c477ac85236.zip |
Added a README file
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -1,9 +1,8 @@ | |||
1 | LIBNAME = lpeg | 1 | LIBNAME = lpeg |
2 | LUADIR = ./lua/ | 2 | LUADIR = ./lua/ |
3 | 3 | ||
4 | # COPT = -O2 -DNDEBUG | 4 | COPT = -O2 -DNDEBUG |
5 | # COPT = -g | 5 | # COPT = -O0 -DLPEG_DEBUG -g |
6 | COPT = -O0 -DLPEG_DEBUG -g | ||
7 | 6 | ||
8 | CWARNS = -Wall -Wextra -pedantic \ | 7 | CWARNS = -Wall -Wextra -pedantic \ |
9 | -Waggregate-return \ | 8 | -Waggregate-return \ |
@@ -12,14 +11,17 @@ CWARNS = -Wall -Wextra -pedantic \ | |||
12 | -Wdisabled-optimization \ | 11 | -Wdisabled-optimization \ |
13 | -Wpointer-arith \ | 12 | -Wpointer-arith \ |
14 | -Wshadow \ | 13 | -Wshadow \ |
14 | -Wredundant-decls \ | ||
15 | -Wsign-compare \ | 15 | -Wsign-compare \ |
16 | -Wundef \ | 16 | -Wundef \ |
17 | -Wwrite-strings \ | 17 | -Wwrite-strings \ |
18 | -Wbad-function-cast \ | 18 | -Wbad-function-cast \ |
19 | -Wdeclaration-after-statement \ | 19 | -Wdeclaration-after-statement \ |
20 | -Wmissing-prototypes \ | 20 | -Wmissing-prototypes \ |
21 | -Wmissing-declarations \ | ||
21 | -Wnested-externs \ | 22 | -Wnested-externs \ |
22 | -Wstrict-prototypes \ | 23 | -Wstrict-prototypes \ |
24 | -Wc++-compat \ | ||
23 | # -Wunreachable-code \ | 25 | # -Wunreachable-code \ |
24 | 26 | ||
25 | 27 | ||