blob: 07107de2c8846876189fe8346991e72536ece005 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
deploydir=$(prefix)/samples/misc/deploy/
prgbindir=$(deploydir)/bin
prgbin_PROGRAMS = sdo_misc
prgbin_SCRIPTS =
EXTRA_DIST = *.xsd *.xml
deploy_DATA = *.xsd *.xml
AM_CPPFLAGS = $(CPPFLAGS)
sdo_misc_SOURCES = samples.cpp \
ChangeSummarySave.cpp \
ObjectCreation.cpp \
Query.cpp \
Substitutes.cpp \
XSDLoading.cpp
noinst_HEADERS = *.h
sdo_misc_LDADD = -L${TUSCANY_SDOCPP}/lib -ltuscany_sdo -lxml2
INCLUDES = -I$(top_builddir)/misc \
-I${TUSCANY_SDOCPP}/include
|