blob: 083886fc997ca307f414282f17186f400dd0e165 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
## Process this file with automake to produce Makefile.in
INCLUDES = -I$(srcdir) -I$(top_srcdir)/libxslt \
$(LIBXML_CFLAGS) -Wall -ansi
noinst_PROGRAMS = # testxslt testevents
DEPS = $(top_builddir)/libxslt/libxslt.la
LDADDS = $(top_builddir)/libxslt/libxslt.la $(LIBXML_LIBS)
#testxslt_SOURCES = test-xslt.c
#testxslt_LDFLAGS =
#testxslt_DEPENDENCIES = $(DEPS)
#testxslt_LDADD = $(LDADDS)
#
#testevents_SOURCES = test-events.c
#testevents_LDFLAGS =
#testevents_DEPENDENCIES = $(DEPS)
#testevents_LDADD = $(LDADDS)
|