From a9c5a38994074d2c9c5da4cf081c4ca9fa8b3271 Mon Sep 17 00:00:00 2001 From: Sergio Queiroz Date: Fri, 9 Sep 2016 16:26:44 -0300 Subject: Updating implementation of Recovery to follow Fabio's idea. Not compatible with labeled ordered choice --- makefile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'makefile') diff --git a/makefile b/makefile index 5728b38..414651e 100644 --- a/makefile +++ b/makefile @@ -1,4 +1,4 @@ -LIBNAME = lpeglabel +LIBNAME = lpeglabelrec LUADIR = ../lua/ COPT = -O2 @@ -29,24 +29,24 @@ FILES = lpvm.o lpcap.o lptree.o lpcode.o lpprint.o # For Linux linux: - make lpeglabel.so "DLLFLAGS = -shared -fPIC" + make lpeglabelrec.so "DLLFLAGS = -shared -fPIC" # For Mac OS macosx: - make lpeglabel.so "DLLFLAGS = -bundle -undefined dynamic_lookup" + make lpeglabelrec.so "DLLFLAGS = -bundle -undefined dynamic_lookup" -lpeglabel.so: $(FILES) - env $(CC) $(DLLFLAGS) $(FILES) -o lpeglabel.so +lpeglabelrec.so: $(FILES) + env $(CC) $(DLLFLAGS) $(FILES) -o lpeglabelrec.so $(FILES): makefile -test: test.lua testlabel.lua testerrors.lua relabel.lua lpeglabel.so +test: test.lua testlabel.lua testerrors.lua relabel.lua lpeglabelrec.so lua test.lua lua testlabel.lua lua testerrors.lua clean: - rm -f $(FILES) lpeglabel.so + rm -f $(FILES) lpeglabelrec.so lpcap.o: lpcap.c lpcap.h lptypes.h -- cgit v1.2.3-55-g6feb