jade
38571c50e6
This parser can be reused for other purposes. It's inspired by
https://bitheap.org/cram/
Although eelco's impostor exists https://github.com/mobusoperandi/eelco,
it is not very nice to depend on out of tree testing frameworks with no
way to customize them.
Change-Id: Ifca50177e09730182baf0ebf829c3505bbb0274a
16 lines
520 B
Makefile
16 lines
520 B
Makefile
programs += test-repl-characterization
|
|
|
|
test-repl-characterization_DIR := $(d)
|
|
|
|
# do not install
|
|
test-repl-characterization_INSTALL_DIR :=
|
|
|
|
test-repl-characterization_SOURCES := \
|
|
$(wildcard $(d)/*.cc) \
|
|
|
|
test-repl-characterization_CXXFLAGS += -I src/libutil -I tests/unit/libutil-support -DNIX_BIN_DIR="\"$(bindir)\""
|
|
|
|
test-repl-characterization_LIBS = libutil libutil-test-support
|
|
|
|
test-repl-characterization_LDFLAGS = $(THREAD_LDFLAGS) $(SODIUM_LIBS) $(EDITLINE_LIBS) $(BOOST_LDFLAGS) $(LOWDOWN_LIBS) $(GTEST_LIBS)
|