1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
AUTOMAKE_OPTIONS = serial-tests
check_PROGRAMS = xpath1 xpath2 xpath3 xpath4 xpath5 xpath6
TESTS = $(check_PROGRAMS)
EXTRA_DIST=zebra.cfg rec1.xml rec2.xml assembled.abs
xpath1_SOURCES = xpath1.c
xpath2_SOURCES = xpath2.c
xpath3_SOURCES = xpath3.c
xpath4_SOURCES = xpath4.c
xpath5_SOURCES = xpath5.c
xpath6_SOURCES = xpath6.c
AM_CPPFLAGS = -I$(top_srcdir)/include $(YAZINC)
LDADD = ../api/libtestlib.a ../../$(main_zebralib) $(YAZLALIB)
clean-local:
-rm -f *.LCK
-rm -f *.log
-rm -f *.mf
|