public inbox for cluster-cvs@sourceware.org
help / color / mirror / Atom feed
From: "Fabio M. Di Nitto" <fabbione@fedoraproject.org>
To: cluster-cvs-relay@redhat.com
Subject: cluster: master - build: first cut at generating .pc files
Date: Fri, 30 Jan 2009 11:47:00 -0000	[thread overview]
Message-ID: <20090130113055.3FA3E12056C@lists.fedorahosted.org> (raw)

Gitweb:        http://git.fedorahosted.org/git/cluster.git?p=cluster.git;a=commitdiff;h=368e3db6c9617ff484ed4e5cbf8e95d396207406
Commit:        368e3db6c9617ff484ed4e5cbf8e95d396207406
Parent:        9ebfb9c422de78ec9f204988d5be2f1704ee207e
Author:        Fabio M. Di Nitto <fdinitto@redhat.com>
AuthorDate:    Fri Jan 30 10:57:05 2009 +0100
Committer:     Fabio M. Di Nitto <fdinitto@redhat.com>
CommitterDate: Fri Jan 30 12:19:29 2009 +0100

build: first cut at generating .pc files

Signed-off-by: Fabio M. Di Nitto <fdinitto@redhat.com>
---
 make/libs.mk |   12 +++++++++++-
 1 files changed, 11 insertions(+), 1 deletions(-)

diff --git a/make/libs.mk b/make/libs.mk
index 0835347..365a7c9 100644
--- a/make/libs.mk
+++ b/make/libs.mk
@@ -26,14 +26,24 @@ ifndef MAKESTATICLIB
 	ifndef SHAREDLIB
 		SHAREDLIB=$(TARGET).so.${SOMAJOR}.${SOMINOR}
 	endif
+	ifndef PKGCONF
+		PKGCONF=$(TARGET).pc
+	endif
 
-all: $(STATICLIB) $(SHAREDLIB)
+all: $(STATICLIB) $(SHAREDLIB) $(PKGCONF)
 
 $(SHAREDLIB): $(OBJS)
 	$(CC) -shared -o $@ -Wl,-soname=$(TARGET).so.$(SOMAJOR) $^ $(LDFLAGS)
 	ln -sf $(TARGET).so.$(SOMAJOR).$(SOMINOR) $(TARGET).so
 	ln -sf $(TARGET).so.$(SOMAJOR).$(SOMINOR) $(TARGET).so.$(SOMAJOR)
 
+$(PKGCONF): $(S)/$(PKGCONF).in
+	cat $(S)/$(PKGCONF).in | \
+	sed \
+		-e 's#@PREFIX@#${prefix}#g' \
+		-e 's#@VERSION@#${RELEASE_VERSION}#g' \
+	> $@
+
 else
 
 all: $(STATICLIB)


                 reply	other threads:[~2009-01-30 11:47 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20090130113055.3FA3E12056C@lists.fedorahosted.org \
    --to=fabbione@fedoraproject.org \
    --cc=cluster-cvs-relay@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).