Fixed initialization of static vars.
[platform/upstream/libzypp.git] / devel / devel.ma / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2 ## ##################################################
3
4 noinst_PROGRAMS =       Main Main.debug Parse
5
6 ## ##################################################
7
8 INCLUDES =
9
10 AM_LDFLAGS =
11
12 AM_CXXFLAGS =
13 # gperf:        -pg
14
15 LDADD =         -L$(top_srcdir)/zypp/.libs -lzypp -lboost_regex
16
17 ## ##################################################
18
19 Main_SOURCES =          Main.cc
20
21 Main_debug_SOURCES =    $(Main_SOURCES)
22 Main_debug_LDFLAGS =    -static
23
24 ## ##################################################
25
26 Parse_SOURCES =         Parse.cc
27 Parse_LDFLAGS =         -static
28
29 ## ##################################################
30
31 .PHONY:        always
32
33 $(noinst_PROGRAMS):    $(top_srcdir)/zypp/lib@PACKAGE@.la
34
35 $(top_srcdir)/zypp/lib@PACKAGE@.la:     always
36         $(MAKE) -C $(top_srcdir)/zypp
37
38 ## ##################################################