diff options
author | Christian Grothoff <christian@grothoff.org> | 2010-11-03 21:19:23 +0000 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2010-11-03 21:19:23 +0000 |
commit | 37ac1b7c9e9e05f93d4100cfb53450ec2d370989 (patch) | |
tree | 3233ef3004997fd3f46744cd122dcfec39dd7392 /pkgconfig/Makefile.am | |
parent | 0b9ce5e5e03020b1057733c1bd4be91058597060 (diff) |
Mantis 1613
Diffstat (limited to 'pkgconfig/Makefile.am')
-rw-r--r-- | pkgconfig/Makefile.am | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/pkgconfig/Makefile.am b/pkgconfig/Makefile.am new file mode 100644 index 000000000..ff939b42a --- /dev/null +++ b/pkgconfig/Makefile.am @@ -0,0 +1,52 @@ +pcfiles = \ + gnunetarm.pc \ + gnunetblock.pc \ + gnunetcore.pc \ + gnunetdatacache.pc \ + gnunetdatastore.pc \ + gnunetdht.pc \ + gnunetdhtlog.pc \ + gnunetdv.pc \ + gnunetfragmentation.pc \ + gnunetfs.pc \ + gnunethello.pc \ + gnunetpeerinfo.pc \ + gnunetstatistics.pc \ + gnunettesting.pc \ + gnunettransport.pc \ + gnunetutil.pc + +all-local: $(pcfiles) + +cp_verbose = $(cp_verbose_$(V)) +cp_verbose_ = $(cp_verbose_$(AM_DEFAULT_VERBOSITY)) +cp_verbose_0 = @echo " CP $@"; + +%.pc: %.pc + $(cp_verbose_0)cp $< $@ + +pkgconfigdir = $(libdir)/pkgconfig +pkgconfig_DATA = $(pcfiles) + +EXTRA_DIST = \ + gnunetarm.pc.in \ + gnunetblock.pc.in \ + gnunetcore.pc.in \ + gnunetdatacache.pc.in \ + gnunetdatastore.pc.in \ + gnunetdht.pc.in \ + gnunetdhtlog.pc.in \ + gnunetdv.pc.in \ + gnunetfragmentation.pc.in \ + gnunetfs.pc.in \ + gnunethello.pc.in \ + gnunetpeerinfo.pc.in \ + gnunetstatistics.pc.in \ + gnunettesting.pc.in \ + gnunettransport.pc.in \ + gnunetutil.pc.in + +CLEANFILES = $(pcfiles) +INCLUDES = -I$(top_srcdir)/src/include + + |