351 lines
10 KiB
Makefile
351 lines
10 KiB
Makefile
# Top level Makefile for rpm
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
DISTCHECK_CONFIGURE_FLAGS = \
|
|
--enable-python \
|
|
--enable-lmdb \
|
|
--enable-bdb \
|
|
--enable-ndb \
|
|
--enable-zstd \
|
|
--with-cap \
|
|
--with-acl \
|
|
--with-archive \
|
|
--with-lua \
|
|
--with-audit \
|
|
--with-selinux \
|
|
--with-imaevm \
|
|
--disable-dependency-tracking
|
|
|
|
include $(top_srcdir)/rpm.am
|
|
AM_CFLAGS = @RPMCFLAGS@
|
|
|
|
CLEANFILES =
|
|
EXTRA_DIST = ChangeLog CREDITS INSTALL \
|
|
autogen.sh db3/configure installplatform platform.in
|
|
BUILT_SOURCES =
|
|
|
|
SUBDIRS = po misc
|
|
if WITH_INTERNAL_DB
|
|
SUBDIRS += db3
|
|
endif
|
|
if WITH_LUA
|
|
SUBDIRS += luaext
|
|
endif
|
|
SUBDIRS += rpmio lib sign build scripts fileattrs doc .
|
|
|
|
if ENABLE_PYTHON
|
|
SUBDIRS += python
|
|
endif
|
|
|
|
if ENABLE_PLUGINS
|
|
SUBDIRS += plugins
|
|
endif
|
|
|
|
if HAVE_FAKECHROOT
|
|
SUBDIRS += tests
|
|
endif
|
|
|
|
DIST_SUBDIRS = po misc luaext rpmio lib sign build python scripts fileattrs doc tests plugins
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
|
|
AM_CPPFLAGS = -I$(top_builddir) -I$(top_srcdir) -I$(top_builddir)/include/
|
|
AM_CPPFLAGS += -I$(top_srcdir)/build
|
|
AM_CPPFLAGS += -I$(top_srcdir)/lib
|
|
AM_CPPFLAGS += -I$(top_srcdir)/rpmio
|
|
AM_CPPFLAGS += @WITH_BEECRYPT_INCLUDE@
|
|
AM_CPPFLAGS += @WITH_NSS_INCLUDE@
|
|
AM_CPPFLAGS += @WITH_OPENSSL_INCLUDE@
|
|
AM_CPPFLAGS += @WITH_POPT_INCLUDE@
|
|
AM_CPPFLAGS += -I$(top_srcdir)/misc
|
|
AM_CPPFLAGS += -DLOCALEDIR="\"$(localedir)\""
|
|
AM_CPPFLAGS += -DLIBRPMALIAS_FILENAME="\"rpmpopt-${VERSION}\""
|
|
|
|
pkginclude_HEADERS =
|
|
nodist_pkginclude_HEADERS =
|
|
|
|
pkginclude_HEADERS += rpmio/argv.h
|
|
pkginclude_HEADERS += rpmio/rpmio.h
|
|
pkginclude_HEADERS += rpmio/rpmurl.h
|
|
pkginclude_HEADERS += rpmio/rpmmacro.h
|
|
pkginclude_HEADERS += rpmio/rpmlog.h
|
|
pkginclude_HEADERS += rpmio/rpmpgp.h
|
|
pkginclude_HEADERS += rpmio/rpmsq.h
|
|
pkginclude_HEADERS += rpmio/rpmstring.h
|
|
pkginclude_HEADERS += rpmio/rpmstrpool.h
|
|
pkginclude_HEADERS += rpmio/rpmsw.h
|
|
pkginclude_HEADERS += rpmio/rpmfileutil.h
|
|
pkginclude_HEADERS += rpmio/rpmutil.h
|
|
pkginclude_HEADERS += rpmio/rpmkeyring.h
|
|
pkginclude_HEADERS += rpmio/rpmbase64.h
|
|
|
|
pkginclude_HEADERS += lib/header.h
|
|
pkginclude_HEADERS += lib/rpmdb.h
|
|
pkginclude_HEADERS += lib/rpmcallback.h
|
|
pkginclude_HEADERS += lib/rpmcli.h
|
|
pkginclude_HEADERS += lib/rpmlib.h
|
|
pkginclude_HEADERS += lib/rpmds.h
|
|
pkginclude_HEADERS += lib/rpmfi.h
|
|
pkginclude_HEADERS += lib/rpmfiles.h
|
|
pkginclude_HEADERS += lib/rpmpol.h
|
|
pkginclude_HEADERS += lib/rpmps.h
|
|
pkginclude_HEADERS += lib/rpmprob.h
|
|
pkginclude_HEADERS += lib/rpmtag.h
|
|
pkginclude_HEADERS += lib/rpmtd.h
|
|
pkginclude_HEADERS += lib/rpmte.h
|
|
pkginclude_HEADERS += lib/rpmts.h
|
|
pkginclude_HEADERS += lib/rpmtypes.h
|
|
pkginclude_HEADERS += lib/rpmarchive.h
|
|
|
|
pkginclude_HEADERS += sign/rpmsign.h
|
|
|
|
pkginclude_HEADERS += build/rpmbuild.h
|
|
pkginclude_HEADERS += build/rpmfc.h
|
|
pkginclude_HEADERS += build/rpmspec.h
|
|
|
|
|
|
bin_PROGRAMS = rpm rpm2cpio rpmbuild rpmdb rpmkeys rpmsign rpmspec
|
|
if WITH_ARCHIVE
|
|
bin_PROGRAMS += rpm2archive
|
|
endif
|
|
|
|
rpmlibexec_PROGRAMS =
|
|
rpmconfig_SCRIPTS = mkinstalldirs \
|
|
config.guess config.sub
|
|
|
|
noinst_LTLIBRARIES = libcliutils.la
|
|
libcliutils_la_SOURCES = cliutils.h cliutils.c
|
|
libcliutils_la_CPPFLAGS = $(AM_CPPFLAGS)
|
|
libcliutils_la_LIBADD = lib/librpm.la rpmio/librpmio.la
|
|
libcliutils_la_LIBADD += @WITH_POPT_LIB@
|
|
|
|
rpm_SOURCES = rpm.c debug.h system.h
|
|
rpm_CPPFLAGS = $(AM_CPPFLAGS)
|
|
rpm_LDADD = libcliutils.la
|
|
rpm_LDADD += lib/librpm.la rpmio/librpmio.la
|
|
rpm_LDADD += @WITH_POPT_LIB@
|
|
|
|
rpmdb_SOURCES = rpmdb.c debug.h system.h
|
|
rpmdb_CPPFLAGS = $(AM_CPPFLAGS)
|
|
rpmdb_LDADD = libcliutils.la
|
|
rpmdb_LDADD += lib/librpm.la rpmio/librpmio.la
|
|
rpmdb_LDADD += @WITH_POPT_LIB@
|
|
|
|
rpmkeys_SOURCES = rpmkeys.c debug.h system.h
|
|
rpmkeys_CPPFLAGS = $(AM_CPPFLAGS)
|
|
rpmkeys_LDADD = libcliutils.la
|
|
rpmkeys_LDADD += lib/librpm.la rpmio/librpmio.la
|
|
rpmkeys_LDADD += @WITH_POPT_LIB@
|
|
|
|
rpmsign_SOURCES = rpmsign.c debug.h system.h
|
|
rpmsign_CPPFLAGS = $(AM_CPPFLAGS)
|
|
rpmsign_LDADD = libcliutils.la
|
|
rpmsign_LDADD += sign/librpmsign.la lib/librpm.la rpmio/librpmio.la
|
|
rpmsign_LDADD += @WITH_POPT_LIB@
|
|
|
|
rpmbuild_SOURCES = rpmbuild.c debug.h system.h
|
|
rpmbuild_CPPFLAGS = $(AM_CPPFLAGS)
|
|
rpmbuild_LDADD = libcliutils.la
|
|
rpmbuild_LDADD += build/librpmbuild.la lib/librpm.la rpmio/librpmio.la
|
|
rpmbuild_LDADD += @WITH_POPT_LIB@
|
|
|
|
rpmspec_SOURCES = rpmspec.c debug.h system.h
|
|
rpmspec_CPPFLAGS = $(AM_CPPFLAGS)
|
|
rpmspec_LDADD = libcliutils.la
|
|
rpmspec_LDADD += build/librpmbuild.la lib/librpm.la rpmio/librpmio.la
|
|
rpmspec_LDADD += @WITH_POPT_LIB@
|
|
|
|
rpm2cpio_SOURCES = rpm2cpio.c debug.h system.h
|
|
rpm2cpio_LDADD = lib/librpm.la rpmio/librpmio.la
|
|
rpm2cpio_LDADD += @WITH_POPT_LIB@
|
|
|
|
rpm2archive_SOURCES = rpm2archive.c debug.h system.h
|
|
rpm2archive_LDADD = lib/librpm.la rpmio/librpmio.la
|
|
rpm2archive_LDADD += @WITH_POPT_LIB@ @WITH_ARCHIVE_LIB@
|
|
|
|
|
|
if LIBELF
|
|
if LIBDWARF
|
|
if LIBDW
|
|
rpmconfig_SCRIPTS += scripts/find-debuginfo.sh
|
|
|
|
rpmlibexec_PROGRAMS += debugedit
|
|
debugedit_SOURCES = tools/debugedit.c tools/hashtab.c tools/hashtab.h
|
|
debugedit_LDADD = rpmio/librpmio.la
|
|
debugedit_LDADD += @WITH_LIBELF_LIB@ @WITH_POPT_LIB@
|
|
if HAVE_LIBDW_STRTAB
|
|
debugedit_LDADD += @WITH_LIBDW_LIB@
|
|
else
|
|
debugedit_LDADD += @WITH_LIBDW_LIB@ -lebl
|
|
endif # HAVE_LIBDW_STRTAB
|
|
endif # LIBDW
|
|
endif # LIBDWARF
|
|
rpmlibexec_PROGRAMS += elfdeps
|
|
elfdeps_SOURCES = tools/elfdeps.c
|
|
elfdeps_LDADD = rpmio/librpmio.la
|
|
elfdeps_LDADD += @WITH_LIBELF_LIB@ @WITH_POPT_LIB@
|
|
|
|
rpmlibexec_PROGRAMS += sepdebugcrcfix
|
|
sepdebugcrcfix_SOURCES = tools/sepdebugcrcfix.c
|
|
sepdebugcrcfix_LDADD = @WITH_LIBELF_LIB@
|
|
endif #LIBELF
|
|
|
|
rpmlibexec_PROGRAMS += rpmdeps
|
|
rpmdeps_SOURCES = tools/rpmdeps.c
|
|
rpmdeps_LDADD = lib/librpm.la rpmio/librpmio.la build/librpmbuild.la @WITH_POPT_LIB@
|
|
|
|
bin_PROGRAMS += rpmgraph
|
|
rpmgraph_SOURCES = tools/rpmgraph.c
|
|
rpmgraph_LDADD = lib/librpm.la rpmio/librpmio.la @WITH_POPT_LIB@
|
|
|
|
dist_bin_SCRIPTS = scripts/gendiff
|
|
|
|
rpmconfig_DATA = rpmrc
|
|
rpmrc: $(top_srcdir)/rpmrc.in
|
|
@$(SED) \
|
|
-e "s,[@]SYSCONFIGDIR[@],$(sysconfdir)/rpm,g" \
|
|
< $(top_srcdir)/rpmrc.in > rpmrc.tmp \
|
|
&& ( cd $(top_builddir) && ./config.status --file=${subdir}/rpmrc:${subdir}/rpmrc.tmp )
|
|
CLEANFILES += rpmrc.tmp rpmrc
|
|
EXTRA_DIST += rpmrc.in
|
|
|
|
noinst_DATA = macros
|
|
macros: $(top_srcdir)/macros.in
|
|
( cd $(top_builddir) && ./config.status --file=${subdir}/macros:${subdir}/macros.in )
|
|
CLEANFILES += macros
|
|
EXTRA_DIST += macros.in
|
|
|
|
noinst_DATA += platform
|
|
platform: $(top_srcdir)/platform.in
|
|
@$(SED) \
|
|
-e "s,[@]RPMCONFIGDIR[@],$(rpmconfigdir),g" \
|
|
< $(top_srcdir)/platform.in > platform.tmp \
|
|
&& ( cd $(top_builddir) && ./config.status --file=${subdir}/platform:${subdir}/platform.tmp )
|
|
CLEANFILES += platform.tmp platform
|
|
EXTRA_DIST += platform.in
|
|
|
|
pkgconfig_DATA = rpm.pc
|
|
rpm.pc: $(top_srcdir)/rpm.pc.in
|
|
@$(SED) \
|
|
-e "s,[@]RPMCONFIGDIR[@],$(rpmconfigdir),g" \
|
|
< $(top_srcdir)/rpm.pc.in > rpm.pc.tmp \
|
|
&& ( cd $(top_builddir) && ./config.status --file=${subdir}/rpm.pc:${subdir}/rpm.pc.tmp )
|
|
CLEANFILES += rpm.pc.tmp rpm.pc
|
|
EXTRA_DIST += rpm.pc.in
|
|
|
|
rpmconfig_DATA += rpmpopt-$(VERSION)
|
|
rpmpopt-@VERSION@: $(top_srcdir)/rpmpopt.in
|
|
@$(SED) \
|
|
-e "s,[@]RPMCONFIGDIR[@],$(rpmconfigdir),g" \
|
|
-e "s,[@]BINDIR[@],$(bindir),g" \
|
|
< $(top_srcdir)/rpmpopt.in > rpmpopt-@VERSION@.tmp \
|
|
&& ( cd $(top_builddir) && ./config.status --file=${subdir}/rpmpopt-@VERSION@:${subdir}/rpmpopt-@VERSION@.tmp )
|
|
CLEANFILES += rpmpopt-@VERSION@.tmp rpmpopt-@VERSION@
|
|
EXTRA_DIST += rpmpopt.in
|
|
|
|
usrsrcdir = $(prefix)/src
|
|
|
|
rpmvardir = $(localstatedir)/lib/rpm
|
|
rpmvar_DATA =
|
|
|
|
install-exec-hook:
|
|
@rm -f $(DESTDIR)$(bindir)/rpmquery
|
|
@LN_S@ $(rpm_symlink_prefix)rpm $(DESTDIR)$(bindir)/rpmquery
|
|
@rm -f $(DESTDIR)$(bindir)/rpmverify
|
|
@LN_S@ $(rpm_symlink_prefix)rpm $(DESTDIR)$(bindir)/rpmverify
|
|
|
|
install-data-local:
|
|
DESTDIR="$(DESTDIR)" pkglibdir="$(rpmconfigdir)" \
|
|
$(SHELL) $(top_srcdir)/installplatform \
|
|
rpmrc platform macros \
|
|
$(RPMCANONVENDOR) $(RPMCANONOS) $(RPMCANONGNU)
|
|
@$(MKDIR_P) $(DESTDIR)$(localstatedir)/tmp
|
|
@$(MKDIR_P) $(DESTDIR)$(rpmconfigdir)/macros.d
|
|
@$(MKDIR_P) $(DESTDIR)$(rpmconfigdir)/lua
|
|
|
|
# XXX to appease distcheck we need to remove "stuff" here...
|
|
uninstall-local:
|
|
@rm -f $(DESTDIR)$(bindir)/rpmquery
|
|
@rm -f $(DESTDIR)$(bindir)/rpmverify
|
|
@rm -rf $(DESTDIR)$(rpmconfigdir)/platform/
|
|
@rm -f $(DESTDIR)$(rpmconfigdir)/macros
|
|
@rm -rf $(DESTDIR)$(rpmconfigdir)/macros.d
|
|
@rm -rf $(DESTDIR)$(rpmconfigdir)/lua
|
|
|
|
MAINTAINERCLEANFILES = ChangeLog
|
|
|
|
# Build hacking docs only on request
|
|
if HACKINGDOCS
|
|
if DOXYGEN
|
|
doc/hacking.doxy: doc/hacking.doxy.in doc/hacking/Doxyheader.h Makefile.am
|
|
$(SED) \
|
|
-e "s,\@top_srcdir\@/,$(top_srcdir)/,g" \
|
|
-e "s,[@]HAVE_DOT[@],$(HAVE_DOT)," \
|
|
-e "s,[@]PACKAGE[@],$(PACKAGE)," \
|
|
-e "s,[@]VERSION[@],$(VERSION)," \
|
|
< $(top_srcdir)/doc/hacking.doxy.in > doc/hacking.doxy
|
|
|
|
doc/hacking/html/index.html: doc/hacking.doxy rpmpopt-@VERSION@
|
|
@DOXYGEN@ doc/hacking.doxy
|
|
noinst_DATA += doc/hacking/html/index.html
|
|
endif
|
|
endif
|
|
EXTRA_DIST += doc/hacking.doxy.in doc/hacking/Doxyheader.h
|
|
|
|
# Always build librpm docs
|
|
if DOXYGEN
|
|
doc/librpm.doxy: doc/librpm.doxy.in doc/librpm/Doxyheader.h Makefile.am configure.ac $(pkginclude_HEADERS)
|
|
files=`echo " $(pkginclude_HEADERS)" | $(SED) -e "s, , \@top_srcdir\@/,g"`; \
|
|
$(SED) -e "s,[@]pkginclude_HEADERS[@],$$files," \
|
|
-e "s,\@top_srcdir\@/,$(top_srcdir)/,g" \
|
|
-e "s,[@]HAVE_DOT[@],$(HAVE_DOT)," \
|
|
-e "s,[@]PACKAGE[@],$(PACKAGE)," \
|
|
-e "s,[@]VERSION[@],$(VERSION)," \
|
|
< $(top_srcdir)/doc/librpm.doxy.in > doc/librpm.doxy
|
|
|
|
doc/librpm/html/index.html: doc/librpm.doxy
|
|
@DOXYGEN@ doc/librpm.doxy
|
|
noinst_DATA += doc/librpm/html/index.html
|
|
endif
|
|
EXTRA_DIST += doc/librpm.doxy.in doc/librpm/Doxyheader.h
|
|
EXTRA_DIST += doc/librpm/html
|
|
|
|
if WITH_INTERNAL_DB
|
|
db.h: $(top_builddir)/db3/db.h
|
|
$(LN_S) $(top_builddir)/db3/db.h $@
|
|
BUILT_SOURCES += db.h
|
|
endif
|
|
DISTCLEANFILES = db.h
|
|
|
|
ChangeLog:
|
|
touch ChangeLog
|
|
|
|
dist-hook:
|
|
if [ -d .git ] && [ -x $(command -v git) ]; then git log --no-merges > $(distdir)/ChangeLog; fi
|
|
|
|
clean-local:
|
|
rm -rf doc/hacking/html
|
|
rm -rf include
|
|
|
|
distclean-local:
|
|
rm -rf doc/librpm.doxy doc/librpm/html
|
|
rm -rf Doxytags
|
|
rm -f stamp-h.in db3/*.orig db3/db3lobjs
|
|
|
|
$(top_srcdir)/preinstall.am: Makefile.am
|
|
rm -f $(top_srcdir)/preinstall.am
|
|
@for f in $(HEADERS); do \
|
|
b=`basename $$f`; \
|
|
echo 'include/rpm/'$$b': '$$f' include/rpm/$$(dirstamp)' >> $(top_srcdir)/preinstall.am;\
|
|
echo ' $$(INSTALL_DATA) $$(top_srcdir)/'$$f' include/rpm/'$$b >> $(top_srcdir)/preinstall.am; \
|
|
echo 'BUILT_SOURCES += include/rpm/'$$b >> $(top_srcdir)/preinstall.am; \
|
|
echo 'CLEANFILES += include/rpm/'$$b >> $(top_srcdir)/preinstall.am; \
|
|
done
|
|
|
|
include/rpm/$(dirstamp):
|
|
@$(MKDIR_P) include/rpm
|
|
@: > include/rpm/$(dirstamp)
|
|
|
|
include $(top_srcdir)/preinstall.am
|