diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2023-04-26 13:36:34 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2023-04-26 13:36:34 -0300 |
commit | 3403b0c7256435560b63f828da92026c5d4c898b (patch) | |
tree | ca6d5753f55fb2d7b6c85cedfe332e03033190a7 /makefile | |
parent | def10e7c009f71f99d6a11171d84fc27568f9b81 (diff) | |
download | lpeg-3403b0c7256435560b63f828da92026c5d4c898b.tar.gz lpeg-3403b0c7256435560b63f828da92026c5d4c898b.tar.bz2 lpeg-3403b0c7256435560b63f828da92026c5d4c898b.zip |
New module 'lpcset'
For code related to compact sets.
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,7 +1,7 @@ | |||
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 = -g |
6 | # COPT = -DLPEG_DEBUG | 6 | # COPT = -DLPEG_DEBUG |
7 | 7 | ||
@@ -26,7 +26,7 @@ CWARNS = -Wall -Wextra -pedantic \ | |||
26 | CFLAGS = $(CWARNS) $(COPT) -std=c99 -I$(LUADIR) -fPIC | 26 | CFLAGS = $(CWARNS) $(COPT) -std=c99 -I$(LUADIR) -fPIC |
27 | CC = gcc | 27 | CC = gcc |
28 | 28 | ||
29 | FILES = lpvm.o lpcap.o lptree.o lpcode.o lpprint.o | 29 | FILES = lpvm.o lpcap.o lptree.o lpcode.o lpprint.o lpcset.o |
30 | 30 | ||
31 | # For Linux | 31 | # For Linux |
32 | linux: | 32 | linux: |
@@ -53,4 +53,4 @@ lpcode.o: lpcode.c lptypes.h lpcode.h lptree.h lpvm.h lpcap.h | |||
53 | lpprint.o: lpprint.c lptypes.h lpprint.h lptree.h lpvm.h lpcap.h | 53 | lpprint.o: lpprint.c lptypes.h lpprint.h lptree.h lpvm.h lpcap.h |
54 | lptree.o: lptree.c lptypes.h lpcap.h lpcode.h lptree.h lpvm.h lpprint.h | 54 | lptree.o: lptree.c lptypes.h lpcap.h lpcode.h lptree.h lpvm.h lpprint.h |
55 | lpvm.o: lpvm.c lpcap.h lptypes.h lpvm.h lpprint.h lptree.h | 55 | lpvm.o: lpvm.c lpcap.h lptypes.h lpvm.h lpprint.h lptree.h |
56 | 56 | lpcset.o: lpcset.c lpcset.h lptypes.h | |