File: Makefile.in

package info (click to toggle)
im 1%3A150-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 1,436 kB
  • ctags: 367
  • sloc: perl: 8,081; sh: 3,003; makefile: 140
file content (120 lines) | stat: -rw-r--r-- 3,636 bytes parent folder | download | duplicates (4)
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
################################################################
###
###			       Makefile
###
### Author:  Internet Message Group <img@mew.org>
### Created: Apr 23, 1997
### Revised: Mar 22, 2003
###

SHELL=	/bin/sh

INSTALL=@INSTALL@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_DATA = @INSTALL_DATA@

chmod=	@im_path_chmod@
mkdir=	@im_path_mkdir@
rm=	@im_path_rm@
mv=	@im_path_mv@
sed=	@im_path_sed@

prefix=	@prefix@
exec_prefix=@exec_prefix@

# --bindir
bindir=@bindir@
# --libdir
libdir=@libdir@
# --with-perldir
perldir=@im_path_siteperl@

# If you modify imlibdir, you should also modify IM/Config.
imlibdir= $(libdir)/im
moddir=	  $(perldir)/IM

RPOP=	@im_rpop@

PROG =	imali imcat imcd imclean \
	imgrep imhist imhsync imjoin imls \
	immknmz immv impack impath imput \
	impwagent imrm imsetup imsort imstore imtar

ALLPROG = $(PROG) imget

CNF = config.h config.status config.cache config.log configure.lineno

all:
	@echo everything has been done by configure.
	@echo you only need to do "make install".

install:: installbin installdata

installbin::
	-if test ! -d $(bindir); then \
		$(mkdir) -p $(bindir) && $(chmod) 755 $(bindir); \
	fi
	for f in $(PROG); do \
		$(sed) -e '/###DELETE-ON-INSTALL###/d' $${f} > $${f}.tmp ; \
		$(INSTALL) -m 755 $${f}.tmp $(bindir)/$${f} ; \
		$(rm) -f $${f}.tmp ; \
	done
	$(sed) -e '/###DELETE-ON-INSTALL###/d' imget > imget.tmp
	$(INSTALL) $(RPOP) imget.tmp $(bindir)/imget
	$(rm) -f imget.tmp

installdata::
	-if test ! -d $(moddir); then \
		$(mkdir) -p $(moddir); \
	fi
	$(chmod) 755 $(moddir)
	for f in IM/*.pm; do \
		$(INSTALL_DATA) $${f} $(moddir) ; \
	done
	-if test ! -d $(imlibdir); then \
		$(mkdir) -p $(imlibdir); \
	fi
	$(chmod) 755 $(imlibdir)
	for cnf_im in SiteConfig ; do \
		if test ! -f $(imlibdir)/$$cnf_im; then \
			$(INSTALL_DATA) cnf.im/$$cnf_im $(imlibdir); \
		else \
			$(INSTALL_DATA) cnf.im/$$cnf_im $(imlibdir)/$$cnf_im.new; \
		fi ;\
	done

clean::
	$(rm) -f $(ALLPROG)
	$(rm) -f cnf.im/SiteConfig
	$(rm) -f IM/Config.pm

distclean:: clean
	$(rm) -f Makefile $(CNF)

### Copyright (C) 1997, 1998, 1999 IM developing team
### All rights reserved.
### 
### Redistribution and use in source and binary forms, with or without
### modification, are permitted provided that the following conditions
### are met:
### 
### 1. Redistributions of source code must retain the above copyright
###    notice, this list of conditions and the following disclaimer.
### 2. Redistributions in binary form must reproduce the above copyright
###    notice, this list of conditions and the following disclaimer in the
###    documentation and/or other materials provided with the distribution.
### 3. Neither the name of the team nor the names of its contributors
###    may be used to endorse or promote products derived from this software
###    without specific prior written permission.
### 
### THIS SOFTWARE IS PROVIDED BY THE TEAM AND CONTRIBUTORS ``AS IS'' AND
### ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
### IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
### PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE TEAM OR CONTRIBUTORS BE
### LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
### CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
### SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
### BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
### WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
### OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
### IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.