diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2010-10-22 15:00:49 +0300 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2010-10-22 15:00:49 +0300 |
commit | 9f2c1bd9096cbf382c864737a6565e5487767ce2 (patch) | |
tree | f61fff8fee1b4b9f638f14c91beaa80d801121de /sign | |
parent | 7c44f5797766f07a917f710bee71dfc88c9cbc6b (diff) | |
download | librpm-tizen-9f2c1bd9096cbf382c864737a6565e5487767ce2.tar.gz librpm-tizen-9f2c1bd9096cbf382c864737a6565e5487767ce2.tar.bz2 librpm-tizen-9f2c1bd9096cbf382c864737a6565e5487767ce2.zip |
Move librpmsign to its own subdirectory in the sources
Diffstat (limited to 'sign')
-rw-r--r-- | sign/Makefile.am | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/sign/Makefile.am b/sign/Makefile.am new file mode 100644 index 000000000..eb28a8db3 --- /dev/null +++ b/sign/Makefile.am @@ -0,0 +1,19 @@ +# Makefile for rpm library. + +include $(top_srcdir)/rpm.am + +AM_CPPFLAGS = -I$(top_builddir) -I$(top_srcdir) -I$(top_builddir)/include/ +AM_CPPFLAGS += @WITH_NSS_INCLUDE@ +AM_CPPFLAGS += @WITH_POPT_INCLUDE@ +AM_CPPFLAGS += -I$(top_srcdir)/misc + +usrlibdir = $(libdir) + +usrlib_LTLIBRARIES = librpmsign.la +librpmsign_la_SOURCES = rpmgensig.c +librpmsign_la_LDFLAGS = -version-info 0:0:0 +librpmsign_la_LIBADD = \ + $(top_builddir)/lib/librpm.la \ + $(top_builddir)/rpmio/librpmio.la \ + @WITH_POPT_LIB@ \ + @LIBINTL@ |