faf
This commit is contained in:
parent
4737a539e5
commit
ac79a6ebc6
1 changed files with 9 additions and 1 deletions
10
Makefile
10
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 \
|
||||
|
|
|
|||
Loading…
Reference in a new issue