29 lines
871 B
Makefile
29 lines
871 B
Makefile
AM_CPPFLAGS = -g -I$(top_srcdir) -I$(top_srcdir)/xedit $(XEDIT_DEBUG_FLAGS) $(XEDIT_CFLAGS)
|
|
|
|
noinst_PROGRAMS = $(TEST_PROGS)
|
|
progs_ldadd = $(top_builddir)/xedit/libxedit.la
|
|
|
|
TEST_PROGS = smart-converter
|
|
smart_converter_SOURCES = smart-converter.c
|
|
smart_converter_LDADD = $(progs_ldadd)
|
|
|
|
TEST_PROGS += document-input-stream
|
|
document_input_stream_SOURCES = document-input-stream.c
|
|
document_input_stream_LDADD = $(progs_ldadd)
|
|
|
|
TEST_PROGS += document-output-stream
|
|
document_output_stream_SOURCES = document-output-stream.c
|
|
document_output_stream_LDADD = $(progs_ldadd)
|
|
|
|
TEST_PROGS += document-loader
|
|
document_loader_SOURCES = document-loader.c
|
|
document_loader_LDADD = $(progs_ldadd)
|
|
|
|
TEST_PROGS += document-saver
|
|
document_saver_SOURCES = document-saver.c
|
|
document_saver_LDADD = $(progs_ldadd)
|
|
|
|
TESTS = $(TEST_PROGS)
|
|
|
|
EXTRA_DIST = setup-document-saver.sh
|