Simplify logging a bit
[platform/upstream/rpm.git] / Makefile.am
1 # Top level Makefile for rpm
2
3 ACLOCAL_AMFLAGS = -I m4
4
5 DISTCHECK_CONFIGURE_FLAGS = --with-external-db
6
7 include $(top_srcdir)/rpm.am
8
9 CLEANFILES =
10 EXTRA_DIST = CHANGES ChangeLog CREDITS GROUPS INSTALL \
11         autodeps autogen.sh \
12         db3/configure installplatform platform.in
13 BUILT_SOURCES =
14
15 SUBDIRS = po misc
16 if WITH_INTERNAL_DB
17 SUBDIRS += db3
18 endif
19 if WITH_LUAEXT
20 SUBDIRS += luaext
21 endif
22 SUBDIRS += rpmio lib build python scripts doc . tests
23
24 DIST_SUBDIRS = po misc luaext rpmio lib build python scripts doc tests
25
26 pkgconfigdir = $(libdir)/pkgconfig
27
28 AM_CPPFLAGS = -I$(top_builddir) -I$(top_srcdir) -I$(top_builddir)/include/
29 AM_CPPFLAGS += -I$(top_srcdir)/build
30 AM_CPPFLAGS += -I$(top_srcdir)/lib
31 AM_CPPFLAGS += -I$(top_srcdir)/rpmio
32 AM_CPPFLAGS += @WITH_NSS_INCLUDE@
33 AM_CPPFLAGS += @WITH_POPT_INCLUDE@
34 AM_CPPFLAGS += -I$(top_srcdir)/misc
35 AM_CPPFLAGS += @WITH_LIBELF_INCLUDE@
36 AM_CPPFLAGS += -DLOCALEDIR="\"$(localedir)\""
37 AM_CPPFLAGS += -DLIBRPMALIAS_FILENAME="\"rpmpopt-${VERSION}\""
38
39 pkginclude_HEADERS =
40 nodist_pkginclude_HEADERS =
41
42 pkginclude_HEADERS += rpmio/argv.h
43 pkginclude_HEADERS += rpmio/rpmio.h
44 pkginclude_HEADERS += rpmio/rpmurl.h
45 pkginclude_HEADERS += rpmio/rpmmacro.h
46 pkginclude_HEADERS += rpmio/rpmlog.h
47 pkginclude_HEADERS += rpmio/rpmpgp.h
48 pkginclude_HEADERS += rpmio/rpmsq.h
49 pkginclude_HEADERS += rpmio/rpmstring.h
50 pkginclude_HEADERS += rpmio/rpmsw.h
51 pkginclude_HEADERS += rpmio/rpmfileutil.h
52 pkginclude_HEADERS += rpmio/rpmutil.h
53 pkginclude_HEADERS += rpmio/rpmkeyring.h
54
55 pkginclude_HEADERS += lib/header.h
56 pkginclude_HEADERS += lib/rpmdb.h
57 pkginclude_HEADERS += lib/rpmcallback.h
58 pkginclude_HEADERS += lib/rpmcli.h
59 pkginclude_HEADERS += lib/rpmlib.h
60 pkginclude_HEADERS += lib/rpmds.h
61 pkginclude_HEADERS += lib/rpmfi.h
62 pkginclude_HEADERS += lib/rpmgi.h
63 pkginclude_HEADERS += lib/rpmlegacy.h
64 pkginclude_HEADERS += lib/rpmps.h
65 pkginclude_HEADERS += lib/rpmtag.h
66 pkginclude_HEADERS += lib/rpmtd.h
67 pkginclude_HEADERS += lib/rpmte.h
68 pkginclude_HEADERS += lib/rpmts.h
69 pkginclude_HEADERS += lib/rpmtypes.h
70 pkginclude_HEADERS += lib/rpmvf.h
71
72 pkginclude_HEADERS += build/rpmbuild.h
73 pkginclude_HEADERS += build/rpmfc.h
74 pkginclude_HEADERS += build/rpmspec.h
75
76
77 rpmbindir = `echo $(bindir) | $(SED) -e s,usr/bin,bin,`
78 rpmbin_PROGRAMS = rpm
79
80 bin_PROGRAMS =          rpm2cpio rpmbuild
81
82 rpmlibexec_PROGRAMS =
83 rpmconfig_SCRIPTS =     find-provides find-requires mkinstalldirs \
84                         config.guess config.sub
85 DISTCLEANFILES = find-provides
86 DISTCLEANFILES += find-requires
87
88 rpm_SOURCES =           rpmqv.c debug.h system.h
89 rpm_CPPFLAGS =          $(AM_CPPFLAGS) -DIAM_RPMDB -DIAM_RPMEIU -DIAM_RPMK -DIAM_RPMQV
90 rpm_LDADD =             build/librpmbuild.la lib/librpm.la rpmio/librpmio.la
91 rpm_LDADD +=            @WITH_LIBELF_LIB@ @WITH_NSS_LIB@ @WITH_POPT_LIB@ @WITH_ZLIB_LIB@
92
93 rpmbuild_SOURCES =      build.c rpmqv.c build.h debug.h system.h
94 rpmbuild_CPPFLAGS =     $(AM_CPPFLAGS) -DIAM_RPMBT
95 rpmbuild_LDADD =        build/librpmbuild.la lib/librpm.la rpmio/librpmio.la
96 rpmbuild_LDADD +=       @WITH_LIBELF_LIB@ @WITH_NSS_LIB@ @WITH_POPT_LIB@ @WITH_ZLIB_LIB@
97
98 rpm2cpio_SOURCES =      rpm2cpio.c debug.h system.h
99 rpm2cpio_LDADD =        lib/librpm.la rpmio/librpmio.la
100 rpm2cpio_LDADD +=       @WITH_LIBELF_LIB@ @WITH_NSS_LIB@ @WITH_POPT_LIB@ @WITH_ZLIB_LIB@
101
102
103 if LIBELF
104 if LIBDWARF
105 rpmconfig_SCRIPTS += scripts/find-debuginfo.sh
106
107 rpmlibexec_PROGRAMS +=  debugedit
108 debugedit_SOURCES =     tools/debugedit.c tools/hashtab.c tools/hashtab.h
109 debugedit_LDADD =       rpmio/librpmio.la
110 debugedit_LDADD +=      @WITH_LIBELF_LIB@ @WITH_POPT_LIB@
111 endif
112 endif
113
114 rpmlibexec_PROGRAMS +=  javadeps
115 javadeps_SOURCES =      tools/javadeps.c
116 javadeps_LDADD =
117
118 rpmlibexec_PROGRAMS +=  rpmdeps
119 rpmdeps_SOURCES =       tools/rpmdeps.c
120 rpmdeps_LDADD =         build/librpmbuild.la
121
122 bin_PROGRAMS +=         rpmgraph
123 rpmgraph_SOURCES =      tools/rpmgraph.c
124 rpmgraph_LDADD =        lib/librpm.la
125
126 dist_bin_SCRIPTS =      scripts/gendiff
127
128 check_PROGRAMS =        dumpdb
129 dumpdb_SOURCES =        tools/dumpdb.c
130 dumpdb_LDADD =          lib/librpm.la
131
132 check_PROGRAMS +=       rpminject
133 rpminject_SOURCES =     tools/rpminject.c
134 rpminject_LDADD =       build/librpmbuild.la
135
136 check_PROGRAMS +=       rpmsort
137 rpmsort_SOURCES =       tools/rpmsort.c
138 rpmsort_LDADD =         lib/librpm.la
139
140 rpmconfig_DATA = rpmrc
141 rpmrc: $(top_srcdir)/rpmrc.in
142         @$(SED) \
143           -e "s,[@]SYSCONFIGDIR[@],$(sysconfdir)/rpm,g" \
144           < $(top_srcdir)/rpmrc.in > rpmrc.tmp \
145           && ( cd $(top_builddir) && ./config.status --file=${subdir}/rpmrc:${subdir}/rpmrc.tmp )
146 CLEANFILES += rpmrc.tmp rpmrc
147 EXTRA_DIST += rpmrc.in
148
149 rpmconfig_DATA += macros
150 macros: $(top_srcdir)/macros.in
151           ( cd $(top_builddir) && ./config.status --file=${subdir}/macros:${subdir}/macros.in )
152 CLEANFILES += macros
153 EXTRA_DIST += macros.in
154
155 noinst_DATA = platform
156 platform: $(top_srcdir)/platform.in
157         @$(SED) \
158           -e "s,[@]RPMCONFIGDIR[@],$(rpmconfigdir),g" \
159           < $(top_srcdir)/platform.in > platform.tmp \
160           && ( cd $(top_builddir) && ./config.status --file=${subdir}/platform:${subdir}/platform.tmp )
161 CLEANFILES += platform.tmp platform
162 EXTRA_DIST += platform.in
163
164 pkgconfig_DATA = rpm.pc
165 rpm.pc: $(top_srcdir)/rpm.pc.in
166         @$(SED) \
167           -e "s,[@]RPMCONFIGDIR[@],$(rpmconfigdir),g" \
168           < $(top_srcdir)/rpm.pc.in > rpm.pc.tmp \
169           && ( cd $(top_builddir) && ./config.status --file=${subdir}/rpm.pc:${subdir}/rpm.pc.tmp )
170 CLEANFILES += rpm.pc.tmp rpm.pc
171 EXTRA_DIST += rpm.pc.in
172
173 rpmconfig_DATA += rpmpopt-$(VERSION)
174 rpmpopt-@VERSION@: $(top_srcdir)/rpmpopt.in
175         @$(SED) \
176           -e "s,[@]RPMCONFIGDIR[@],$(rpmconfigdir),g" \
177           < $(top_srcdir)/rpmpopt.in > rpmpopt-@VERSION@.tmp \
178           && ( cd $(top_builddir) && ./config.status --file=${subdir}/rpmpopt-@VERSION@:${subdir}/rpmpopt-@VERSION@.tmp )
179 CLEANFILES += rpmpopt-@VERSION@.tmp rpmpopt-@VERSION@
180 EXTRA_DIST += rpmpopt.in
181
182 usrsrcdir = $(prefix)/src
183
184 rpmvardir = $(localstatedir)/lib/rpm
185 rpmvar_DATA =
186
187 install-exec-hook:
188         rm -f $(DESTDIR)$(bindir)/rpmquery
189         @LN_S@ ../../bin/rpm $(DESTDIR)$(bindir)/rpmquery
190         rm -f $(DESTDIR)$(bindir)/rpmverify
191         @LN_S@ ../../bin/rpm $(DESTDIR)$(bindir)/rpmverify
192         rm -f $(DESTDIR)$(bindir)/rpmsign
193         @LN_S@ ../../bin/rpm $(DESTDIR)$(bindir)/rpmsign
194         rm -f $(DESTDIR)$(bindir)/rpmdb
195         @LN_S@ ../../bin/rpm $(DESTDIR)$(bindir)/rpmdb
196
197 install-data-local:
198         @case "@host_os@" in \
199         solaris*|linux*|darwin*) \
200            DESTDIR="$(DESTDIR)" pkglibdir="$(rpmconfigdir)" $(SHELL) $(top_srcdir)/installplatform rpmrc macros platform ;; \
201         esac
202         @$(MKDIR_P) $(DESTDIR)$(localstatedir)/tmp
203
204 # XXX to appease distcheck we need to remove "stuff" here...
205 uninstall-local:
206         @rm -f $(DESTDIR)$(bindir)/rpmquery
207         @rm -f $(DESTDIR)$(bindir)/rpmsign
208         @rm -f $(DESTDIR)$(bindir)/rpmverify
209         @rm -f $(DESTDIR)$(bindir)/rpmdb
210         @rm -rf $(DESTDIR)$(rpmconfigdir)/platform/
211
212 MAINTAINERCLEANFILES = ChangeLog
213
214 # Build hacking docs only on request
215 if HACKINGDOCS
216 if DOXYGEN
217 doc/hacking.doxy: doc/hacking.doxy.in doc/hacking/Doxyheader Makefile.am
218         $(SED) \
219           -e "s,\@top_srcdir\@/,$(top_srcdir)/,g" \
220           -e "s,[@]HAVE_DOT[@],$(HAVE_DOT)," \
221           -e "s,[@]PACKAGE[@],$(PACKAGE)," \
222           -e "s,[@]VERSION[@],$(VERSION)," \
223         < $(top_srcdir)/doc/hacking.doxy.in > doc/hacking.doxy
224
225 doc/hacking/html/index.html: doc/hacking.doxy rpmpopt-@VERSION@
226         @DOXYGEN@ doc/hacking.doxy
227 noinst_DATA += doc/hacking/html/index.html
228 endif
229 endif
230 EXTRA_DIST += doc/hacking.doxy.in doc/hacking/Doxyheader
231
232 # Always build librpm docs
233 if DOXYGEN
234 doc/librpm.doxy: doc/librpm.doxy.in doc/librpm/Doxyheader Makefile.am $(pkginclude_HEADERS)
235         files=`echo " $(HEADERS)" | $(SED) -e "s, , \@top_srcdir\@/,g"`; \
236         $(SED) -e "s,[@]pkginclude_HEADERS[@],$$files," \
237           -e "s,\@top_srcdir\@/,$(top_srcdir)/,g" \
238           -e "s,[@]HAVE_DOT[@],$(HAVE_DOT)," \
239           -e "s,[@]PACKAGE[@],$(PACKAGE)," \
240           -e "s,[@]VERSION[@],$(VERSION)," \
241         < $(top_srcdir)/doc/librpm.doxy.in > doc/librpm.doxy
242
243 doc/librpm/html/index.html: doc/librpm.doxy
244         @DOXYGEN@ doc/librpm.doxy
245 noinst_DATA += doc/librpm/html/index.html
246 endif
247 EXTRA_DIST += doc/librpm.doxy.in doc/librpm/Doxyheader
248 EXTRA_DIST += doc/librpm/html
249
250 if WITH_INTERNAL_DB
251 db.h:   $(top_builddir)/db3/db.h
252         $(LN_S) $(top_builddir)/db3/db.h $@
253 BUILT_SOURCES += db.h
254 endif
255 DISTCLEANFILES += db.h
256
257 clean-local:
258         rm -rf doc/hacking/html
259         rm -rf include
260
261 distclean-local:
262         rm -rf Doxytags
263         rm -f stamp-h.in db3/*.orig db3/db3lobjs
264
265 maintainer-clean-local:
266         rm -rf doc/librpm/html
267
268 $(top_srcdir)/preinstall.am: Makefile.am
269         rm -f $(top_srcdir)/preinstall.am
270         @for f in $(HEADERS); do \
271           b=`basename $$f`; \
272           echo 'include/rpm/'$$b': '$$f' include/rpm/$$(dirstamp)' >> $(top_srcdir)/preinstall.am;\
273           echo '        $$(INSTALL_DATA) $$(top_srcdir)/'$$f' include/rpm/'$$b >> $(top_srcdir)/preinstall.am; \
274           echo 'BUILT_SOURCES += include/rpm/'$$b >> $(top_srcdir)/preinstall.am; \
275           echo 'CLEANFILES += include/rpm/'$$b  >> $(top_srcdir)/preinstall.am; \
276          done
277
278 include/rpm/$(dirstamp):
279         @$(MKDIR_P) include/rpm
280         @: > include/rpm/$(dirstamp)
281
282 include $(top_srcdir)/preinstall.am