[67] in arla-drinkers
Re: librxdefclient.a
daemon@ATHENA.MIT.EDU (Love)
Sat Jun 27 01:58:11 1998
From arla-drinkers-request@sundance.stacken.kth.se Sat Jun 27 05:58:10 1998
Return-Path: <arla-drinkers-request@sundance.stacken.kth.se>
Delivered-To: arla-drinkers-mtg@bloom-picayune.mit.edu
Received: (qmail 24337 invoked from network); 27 Jun 1998 05:58:09 -0000
Received: from unknown (HELO sundance.stacken.kth.se) (130.237.234.41)
by bloom-picayune.mit.edu with SMTP; 27 Jun 1998 05:58:09 -0000
Received: from elixir.e.kth.se (sendmail@elixir.e.kth.se [130.237.48.5])
by sundance.stacken.kth.se (8.8.8/8.8.8) with ESMTP id HAA28629
for <arla-drinkers@stacken.kth.se>; Sat, 27 Jun 1998 07:52:22 +0200 (MET DST)
Received: from zafir.e.kth.se (zafir.e.kth.se [130.237.48.6])
by elixir.e.kth.se (8.8.7/8.8.7) with ESMTP id HAA07901;
Sat, 27 Jun 1998 07:52:22 +0200 (MET DST)
Received: (e96_lho@localhost) by zafir.e.kth.se (8.8.7/8.6.6) id HAA12979; Sat, 27 Jun 1998 07:52:20 +0200 (MET DST)
Sender: e96_lho@elixir.e.kth.se
To: Derrick J Brashear <shadow@dementia.org>
Cc: arla-drinkers@stacken.kth.se
Subject: Re: librxdefclient.a
References: <Pine.SOL.3.95L.980626230806.27953A-100000@johnstown.andrew.cmu.edu>
From: Love <lha@stacken.kth.se>
Mime-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Date: 27 Jun 1998 07:52:20 +0200
In-Reply-To: Derrick J Brashear's message of Fri, 26 Jun 1998 23:09:45 -0400 (EDT)
Message-ID: <yxb21zsbjsrv.fsf@zafir.e.kth.se>
Lines: 69
X-Mailer: Gnus v5.3/Emacs 19.34
Derrick J Brashear <shadow@dementia.org> writes:
> This really ought to be installed. I actually hope to come up with a
> couple of things which will be able to link against it...
I guess the headerfiles is useful too.
Love
Index: Makefile.in
===================================================================
RCS file: /usr/local/cvsroot/arla/rxdef/Makefile.in,v
retrieving revision 1.28
diff -u -w -u -w -r1.28 Makefile.in
--- Makefile.in 1998/05/02 08:25:06 1.28
+++ Makefile.in 1998/06/27 05:50:40
@@ -1,4 +1,4 @@
-# $Id$
+# $Id: Makefile.in,v 1.28 1998/05/02 08:25:06 assar Exp $
srcdir = @srcdir@
VPATH = @srcdir@
@@ -13,6 +13,16 @@
CFLAGS = @CFLAGS@
+INSTALL = @INSTALL@
+INSTALL_PROGRAM = @INSTALL_PROGRAM@
+INSTALL_DATA = @INSTALL_DATA@
+MKINSTALLDIRS = @top_srcdir@/mkinstalldirs
+
+prefix = @prefix@
+exec_prefix = @exec_prefix@
+libdir = @libdir@
+includedir = @includedir@
+
RM = rm
YDR = ../ydr/ydr
YDRFLAGS = -I$(srcdir)
@@ -28,7 +38,9 @@
$(srcdir)/cb.xg \
$(srcdir)/pts.xg \
$(srcdir)/volumeserver.xg
-HDRS = vldb.h cb.h fs.h # volumeserver.h
+HDRS = vldb.h cb.h fs.h pts.h # volumeserver.h
+MOREHDRS = vldb.cs.h vldb.ss.h cb.cs.h cb.ss.h fs.cs.h fs.ss.h \
+ pts.cs.h pts.ss.h
CFILES = vldb.ss.c vldb.cs.c vldb.ydr.c \
fs.ss.c fs.cs.c fs.ydr.c \
cb.ss.c cb.cs.c cb.ydr.c \
@@ -54,8 +66,15 @@
$(CC) -c $(CPPFLAGS) $(DEFS) -I$(srcdir) -I. $(REALCFLAGS) $<
install: all
+ $(MKINSTALLDIRS) $(DESTDIR)$(libdir)
+ for LIB in $(LIBS) ; do $(INSTALL_DATA) $$LIB $(DESTDIR)$(libdir)/$$LIB ; done
+ $(MKINSTALLDIRS) $(DESTDIR)$(includedir)
+ for INC in $(HDRS) $(MOREHDRS) ; do $(INSTALL_DATA) $$INC $(DESTDIR)$(includedir)/$$INC ; done
+
uninstall:
+ for LIB in $(LIBS); do rm -f $(DESTDIR)$(libdir)/$$LIB ; done
+ for INC in $(HDRS) $(MOREHDRS); do rm -f $(DESTDIR)$(includedir)/$$INC ; done
ydr: $(XGFILES)
../ydr/ydr $<