summaryrefslogtreecommitdiff
path: root/ice-9/Makefile.in
blob: 318dc4a56d4651ec928f065e59f8b147f3c6b505 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# 	Copyright (C) 1995 Free Software Foundation, Inc.
# 
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.
# 
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
# 
# You should have received a copy of the GNU General Public License
# along with this software; see the file COPYING.  If not, write to
# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
# 



SHELL = /bin/sh

srcdir = @srcdir@
VPATH = @srcdir@
prefix = @prefix@

VERSION=@GUILE_VERSION@

libparent=$(prefix)/lib
libdir=$(libparent)/guile$(VERSION)
install_path=$(libdir)/@library_name@

INSTALL = $(srcdir)/../install-sh -c
INSTALL_DATA = $(INSTALL) -m 644

scm_files=  @scm_files@
aux_files = @aux_files@

all: 

install: all
	test -d $(libparent) || mkdir $(libparent)
	test -d $(libdir) || mkdir $(libdir)
	test -d $(install_path) || mkdir $(install_path)
	cd $(srcdir); \
	for file in $(scm_files); do \
	  $(INSTALL_DATA) $$file $(install_path); \
	done

uninstall: 
	for file in $(scm_files) ; do \
	  rm -f $(install_path)/$$file;  \
	done;
	-rmdir $(install_path)
	-rmdir $(libdir)


SUBDIR=.
manifest:
	srcdir=./$(SUBDIR) ; \
	. $(SUBDIR)/PLUGIN/this.configure;  \
	for file in $$scm_files $$aux_files ; \
	  do echo $(SUBDIR)/$$file ; \
	done

clean:

distclean:
	-rm -f config.log config.status Makefile

realclean: