- Introduce examples/
[platform/upstream/libzypp.git] / examples / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2 ## ##################################################
3
4 noinst_PROGRAMS = read_plaindir_source
5
6 ## ##################################################
7
8 INCLUDES = -I$(oldincludedir)/libxml2
9 AM_LDFLAGS =
10
11 AM_CXXFLAGS =
12 # gperf:        -pg
13
14 LDADD =         -L$(top_srcdir)/zypp/.libs -lzypp -lboost_regex -lxml2 -lz $(top_srcdir)/testsuite/src/utils/lib@PACKAGE@_testsuite_utils.la
15
16 ## ##################################################
17
18 read_plaindir_source_SOURCES =  read_plaindir_source.cc
19 read_plaindir_source_LDFLAGS =  -static
20
21 .PHONY:        always
22
23 $(noinst_PROGRAMS):    $(top_srcdir)/zypp/lib@PACKAGE@.la
24
25 $(top_srcdir)/zypp/lib@PACKAGE@.la:     always
26         $(MAKE) -C $(top_srcdir)/zypp
27
28 ## ##################################################