From ac79a6ebc66906d52315fd4fe90d332fac543271 Mon Sep 17 00:00:00 2001 From: Benson Chu Date: Sat, 21 Sep 2024 07:41:23 -0500 Subject: [PATCH] faf --- Makefile | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2d149cc..f8afd14 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,8 @@ LIBS= $(BUILDDIR)/libs.stamp .PHONY: all clean cleanall test all: $(BUILDDIR)/pegrep-debug -fast: $(BUILDDIR)/pegrep +rel: $(BUILDDIR)/pegrep +faf: $(BUILDDIR)/pegrep-faf # Make executable with full debug support and slower execution time $(BUILDDIR)/pegrep-debug: $(LIBS) @@ -24,6 +25,13 @@ $(BUILDDIR)/pegrep: $(LIBS) --eval '(asdf:make :pegrep)' \ --eval '(quit)' +$(BUILDDIR)/pegrep-faf: $(LIBS) + $(EXE) $(FLAGS) \ + --load $(QL)/setup.lisp \ + --eval '(asdf:load-system :pegrep/faf)' \ + --eval '(asdf:make :pegrep/faf)' \ + --eval '(quit)' + test: $(LIBS) $(EXE) $(FLAGS) \ --load $(QL)/setup.lisp \