ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/cvsroot/rxvt-unicode/Makefile.in
(Generate patch)

Comparing cvsroot/rxvt-unicode/Makefile.in (file contents):
Revision 1.27 by ayin, Wed Jun 13 16:20:41 2007 UTC vs.
Revision 1.39 by sf-exg, Sat Sep 22 15:53:37 2012 UTC

1# ./Makefile.in -*- Makefile -*- 1# ./Makefile.in -*- Makefile -*-
2 2
3DATE=@DATE@ 3DATE = @DATE@
4VERSION=@VERSION@ 4VERSION = @VERSION@
5RXVTNAME=@RXVTNAME@ 5RXVTNAME = @RXVTNAME@
6SHELL = /bin/sh 6SHELL = /bin/sh
7prefix = @prefix@ 7prefix = @prefix@
8exec_prefix = @exec_prefix@ 8exec_prefix = @exec_prefix@
9bindir = @bindir@ 9bindir = @bindir@
10libdir = @libdir@ 10libdir = @libdir@
11includedir = @includedir@
12man1dir = @mandir@/man1 11man1dir = @mandir@/man1
13man1ext = 1 12man1ext = 1
14man3dir = @mandir@/man3 13man3dir = @mandir@/man3
15man3ext = 3 14man3ext = 3
16man7dir = @mandir@/man7 15man7dir = @mandir@/man7
20INSTALL_PROGRAM = @INSTALL@ -m 755 19INSTALL_PROGRAM = @INSTALL@ -m 755
21INSTALL_DATA = @INSTALL@ -m 644 20INSTALL_DATA = @INSTALL@ -m 644
22 21
23VERNAME = rxvt-unicode-$(VERSION) 22VERNAME = rxvt-unicode-$(VERSION)
24 23
25srcdir = @srcdir@ 24srcdir = @srcdir@
26VPATH = @srcdir@ 25VPATH = @srcdir@
27 26
28first_rule: all 27first_rule: all
29dummy: 28dummy:
30 29
31subdirs = src doc 30subdirs = src doc
32 31
33MKDIR = $(srcdir)/mkinstalldirs 32RECURSIVE_TARGETS = all allbin alldoc tags clean distclean realclean install
34 33
35#------------------------------------------------------------------------- 34#-------------------------------------------------------------------------
36 35
37all allbin alldoc tags: 36$(RECURSIVE_TARGETS):
38 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done 37 @for I in $(subdirs); do (cd $$I; $(MAKE) $@) || exit 1; done
39 38
40distclean realclean: distclean-local 39distclean realclean: distclean-local
41
42clean distclean realclean:
43 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done
44 40
45# 41#
46# entry points for other programs 42# entry points for other programs
47# 43#
48rxvt: 44rxvt:
49 (cd src; ${MAKE}) 45 (cd src; $(MAKE))
50 46
51#------------------------------------------------------------------------- 47#-------------------------------------------------------------------------
52configure: configure.ac aclocal.m4 config.h.in 48configure: configure.ac aclocal.m4 libev/libev.m4 libptytty/ptytty.m4
53 cd $(srcdir); ./autogen.sh 49 cd $(srcdir); ./autogen.sh
54 50
55config.status: 51config.status:
56 if test -x config.status; then config.status --recheck; \ 52 if test -x config.status; then config.status --recheck; \
57 else $(SHELL) configure; fi 53 else $(SHELL) configure; fi
58 54
59config.h.in: configure.ac 55config.h.in: configure.ac aclocal.m4 libev/libev.m4 libptytty/ptytty.m4
60 cd $(srcdir); ./autogen.sh 56 cd $(srcdir); ./autogen.sh
61
62installdirs:
63 $(MKDIR) $(DESTDIR)$(bindir)
64 $(MKDIR) $(DESTDIR)$(mandir)
65
66install: installdirs
67 @for I in $(subdirs); do (cd $$I; $(MAKE) DESTDIR=$(DESTDIR) $@) || exit 1; done
68 57
69check: all 58check: all
70 echo "no tests" 59 echo "no tests"
71 60
72Makefiles: 61Makefiles:
73 $(SHELL) config.status 62 $(SHELL) config.status
74 63
75cleandir: realclean 64cleandir: realclean
76 65
77distclean-local: 66distclean-local:
78 rm -f *~ config.cache config.h config.log config.status libtool 67 rm -f config.cache config.h config.log config.status
79 rm -f Makefile 68 rm -f Makefile
80 69
81distdir: 70distdir:
82 cd doc && $(MAKE) distdepend 71 cd doc && $(MAKE) distdepend
83 cd src && $(MAKE) depend 72 cd src && $(MAKE) depend
84 rm -rf $(VERNAME) 73 rm -rf $(VERNAME)
85 mkdir $(VERNAME) 74 mkdir $(VERNAME)
86 rsync -aR `cat MANIFEST` $(VERNAME)/. 75 rsync -aR --copy-unsafe-links `cat MANIFEST` $(VERNAME)/.
87 76
88tar.gz: distdir 77tar.gz: distdir
89 tar cvf - $(VERNAME) | gzip -vf9 > $(VERNAME).tar.gz 78 tar cvf - $(VERNAME) | gzip -vf9 > $(VERNAME).tar.gz
90 rm -rf $(VERNAME) 79 rm -rf $(VERNAME)
91 80

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines