maintainer changed: was lord, now jimb; first import
[bpt/guile.git] / ice-9 / Makefile.in
CommitLineData
0f2d19dd
JB
1# Copyright (C) 1995 Free Software Foundation, Inc.
2#
3# This program is free software; you can redistribute it and/or modify
4# it under the terms of the GNU General Public License as published by
5# the Free Software Foundation; either version 2, or (at your option)
6# any later version.
7#
8# This program is distributed in the hope that it will be useful,
9# but WITHOUT ANY WARRANTY; without even the implied warranty of
10# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11# GNU General Public License for more details.
12#
13# You should have received a copy of the GNU General Public License
14# along with this software; see the file COPYING. If not, write to
15# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
16#
17
18\f
19
20SHELL = /bin/sh
21
22srcdir = @srcdir@
23VPATH = @srcdir@
24prefix = @prefix@
25
26VERSION=@GUILE_VERSION@
27
28libparent=$(prefix)/lib
29libdir=$(libparent)/guile$(VERSION)
30install_path=$(libdir)/@library_name@
31
32INSTALL = $(srcdir)/../install-sh -c
33INSTALL_DATA = $(INSTALL) -m 644
34
35scm_files= @scm_files@
36aux_files = @aux_files@
37
38all:
39
40install: all
41 test -d $(libparent) || mkdir $(libparent)
42 test -d $(libdir) || mkdir $(libdir)
43 test -d $(install_path) || mkdir $(install_path)
44 cd $(srcdir); \
45 for file in $(scm_files); do \
46 $(INSTALL_DATA) $$file $(install_path); \
47 done
48
49uninstall:
50 for file in $(scm_files) ; do \
51 rm -f $(install_path)/$$file; \
52 done;
53 -rmdir $(install_path)
54 -rmdir $(libdir)
55
56
57SUBDIR=.
58manifest:
59 srcdir=./$(SUBDIR) ; \
60 . $(SUBDIR)/PLUGIN/this.configure; \
61 for file in $$scm_files $$aux_files ; \
62 do echo $(SUBDIR)/$$file ; \
63 done
64
65clean:
66
67distclean:
68 -rm -f config.log config.status Makefile
69
70realclean:
71