aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2023-04-27 10:32:39 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2023-04-27 10:32:39 -0300
commit012cf9c86cf91cb8354e229bde335592d41b84b2 (patch)
tree353f17797b1952eaec231c8e4fd5c21e02daf875 /makefile
parent3403b0c7256435560b63f828da92026c5d4c898b (diff)
downloadlpeg-012cf9c86cf91cb8354e229bde335592d41b84b2.tar.gz
lpeg-012cf9c86cf91cb8354e229bde335592d41b84b2.tar.bz2
lpeg-012cf9c86cf91cb8354e229bde335592d41b84b2.zip
Compact charsets used in trees, too.
Diffstat (limited to 'makefile')
-rw-r--r--makefile13
1 files changed, 7 insertions, 6 deletions
diff --git a/makefile b/makefile
index 9493c6e..2b3c12e 100644
--- a/makefile
+++ b/makefile
@@ -1,9 +1,9 @@
1LIBNAME = lpeg 1LIBNAME = lpeg
2LUADIR = ./lua/ 2LUADIR = ./lua/
3 3
4COPT = -O2 -DNDEBUG 4# COPT = -O2 -DNDEBUG
5# COPT = -g 5# COPT = -g
6# COPT = -DLPEG_DEBUG 6COPT = -DLPEG_DEBUG -g
7 7
8CWARNS = -Wall -Wextra -pedantic \ 8CWARNS = -Wall -Wextra -pedantic \
9 -Waggregate-return \ 9 -Waggregate-return \
@@ -49,8 +49,9 @@ clean:
49 49
50 50
51lpcap.o: lpcap.c lpcap.h lptypes.h 51lpcap.o: lpcap.c lpcap.h lptypes.h
52lpcode.o: lpcode.c lptypes.h lpcode.h lptree.h lpvm.h lpcap.h 52lpcode.o: lpcode.c lptypes.h lpcode.h lptree.h lpvm.h lpcap.h lpcset.h
53lpprint.o: lpprint.c lptypes.h lpprint.h lptree.h lpvm.h lpcap.h 53lpcset.o: lpcset.c lptypes.h lpcset.h lpcode.h lptree.h lpvm.h lpcap.h
54lptree.o: lptree.c lptypes.h lpcap.h lpcode.h lptree.h lpvm.h lpprint.h 54lpprint.o: lpprint.c lptypes.h lpprint.h lptree.h lpvm.h lpcap.h lpcode.h
55lptree.o: lptree.c lptypes.h lpcap.h lpcode.h lptree.h lpvm.h lpprint.h \
56 lpcset.h
55lpvm.o: lpvm.c lpcap.h lptypes.h lpvm.h lpprint.h lptree.h 57lpvm.o: lpvm.c lpcap.h lptypes.h lpvm.h lpprint.h lptree.h
56lpcset.o: lpcset.c lpcset.h lptypes.h