From: fabbione@sourceware.org <fabbione@sourceware.org>
To: cluster-devel.redhat.com
Subject: [Cluster-devel] cluster ccs/lib/Makefile gfs/libgfs/Makefile g ...
Date: 12 Nov 2007 08:17:01 -0000 [thread overview]
Message-ID: <20071112081701.31515.qmail@sourceware.org> (raw)
CVSROOT: /cvs/cluster
Module name: cluster
Changes by: fabbione at sourceware.org 2007-11-12 08:17:00
Modified files:
ccs/lib : Makefile
gfs/libgfs : Makefile
gfs2/libgfs2 : Makefile
group/lib : Makefile
rgmanager/src/clulib: Makefile
Log message:
Be consistent across the entire tree on AR and RANLIB invocations
Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/ccs/lib/Makefile.diff?cvsroot=cluster&r1=1.8&r2=1.9
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/gfs/libgfs/Makefile.diff?cvsroot=cluster&r1=1.10&r2=1.11
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/gfs2/libgfs2/Makefile.diff?cvsroot=cluster&r1=1.12&r2=1.13
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/group/lib/Makefile.diff?cvsroot=cluster&r1=1.7&r2=1.8
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/rgmanager/src/clulib/Makefile.diff?cvsroot=cluster&r1=1.17&r2=1.18
--- cluster/ccs/lib/Makefile 2007/08/28 04:35:39 1.8
+++ cluster/ccs/lib/Makefile 2007/11/12 08:16:59 1.9
@@ -25,7 +25,8 @@
all: ${TARGET}
${TARGET}: ${OBJS}
- ${AR} cr ${TARGET} ${OBJS}
+ ${AR} cr $@ $^
+ ${RANLIB} $@
%.o: %.c
$(CC) $(CFLAGS) -c -o $@ $<
--- cluster/gfs/libgfs/Makefile 2007/08/28 04:35:43 1.10
+++ cluster/gfs/libgfs/Makefile 2007/11/12 08:17:00 1.11
@@ -41,8 +41,8 @@
all: ${TARGET}
${TARGET}: ${OBJS}
- ar cru libgfs.a ${OBJS}
- ranlib libgfs.a
+ ${AR} cru $@ $^
+ ${RANLIB} $@
%.o: %.c
$(CC) $(CFLAGS) -c -o $@ $<
--- cluster/gfs2/libgfs2/Makefile 2007/10/19 15:06:56 1.12
+++ cluster/gfs2/libgfs2/Makefile 2007/11/12 08:17:00 1.13
@@ -40,8 +40,8 @@
all: ${TARGET}
${TARGET}: ${OBJS}
- ar cru libgfs2.a ${OBJS}
- ranlib libgfs2.a
+ ${AR} cru $@ $^
+ ${RANLIB} $@
%.o: %.c
$(CC) $(CFLAGS) -c -o $@ $<
--- cluster/group/lib/Makefile 2007/08/28 04:35:45 1.7
+++ cluster/group/lib/Makefile 2007/11/12 08:17:00 1.8
@@ -23,7 +23,7 @@
$(TARGET).a: $(TARGET).o
${AR} r $@ $^
-# ${RANLIB} $(TARGET).a
+ ${RANLIB} $@
%.o: %.c
$(CC) $(CFLAGS) -c -o $@ $<
--- cluster/rgmanager/src/clulib/Makefile 2007/08/28 04:35:47 1.17
+++ cluster/rgmanager/src/clulib/Makefile 2007/11/12 08:17:00 1.18
@@ -42,11 +42,11 @@
${TARGET1}: ${OBJS1}
${AR} cru $@ $^
- ranlib $@
+ ${RANLIB} $@
${TARGET2}: ${OBJS2}
${AR} cru $@ $^
- ranlib $@
+ ${RANLIB} $@
${TARGET3}: ${OBJS3} ${TARGET1}
$(CC) -o $@ $^ $(LDFLAGS)
reply other threads:[~2007-11-12 8:17 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=20071112081701.31515.qmail@sourceware.org \
--to=fabbione@sourceware.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.