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

Comparing rxvt-unicode/Makefile.in (file contents):
Revision 1.25 by ayin, Wed Jun 13 11:14:00 2007 UTC vs.
Revision 1.33 by ayin, Thu Feb 21 18:47:32 2008 UTC

13man1ext = 1 13man1ext = 1
14man3dir = @mandir@/man3 14man3dir = @mandir@/man3
15man3ext = 3 15man3ext = 3
16man7dir = @mandir@/man7 16man7dir = @mandir@/man7
17man7ext = 7 17man7ext = 7
18MV = @MV@
19CP = @CP@
20LN = @LN@
21SED = @SED@
22AWK = @AWK@
23ECHO = @ECHO@
24CMP = @CMP@
25TBL = @TBL@
26PERL = @PERL@ 18PERL = @PERL@
27INSTALL = @INSTALL@ 19INSTALL = @INSTALL@
28INSTALL_PROGRAM = @INSTALL@ -m 755 20INSTALL_PROGRAM = @INSTALL@ -m 755
29INSTALL_DATA = @INSTALL@ -m 644 21INSTALL_DATA = @INSTALL@ -m 644
30 22
36first_rule: all 28first_rule: all
37dummy: 29dummy:
38 30
39subdirs = src doc 31subdirs = src doc
40 32
41MKDIR = $(srcdir)/mkinstalldirs 33RECURSIVE_TARGETS = all allbin alldoc tags clean distclean realclean install
42 34
43#------------------------------------------------------------------------- 35#-------------------------------------------------------------------------
44 36
45all allbin alldoc tags: 37$(RECURSIVE_TARGETS):
46 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done 38 @for I in $(subdirs); do (cd $$I; $(MAKE) $@) || exit 1; done
47 39
48distclean realclean: distclean-local 40distclean realclean: distclean-local
49
50clean distclean realclean:
51 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done
52 41
53# 42#
54# entry points for other programs 43# entry points for other programs
55# 44#
56rxvt: 45rxvt:
57 (cd src; ${MAKE}) 46 (cd src; $(MAKE))
58 47
59#------------------------------------------------------------------------- 48#-------------------------------------------------------------------------
60configure: configure.ac aclocal.m4 config.h.in 49configure: configure.ac aclocal.m4 config.h.in
61 cd $(srcdir); ./autogen.sh 50 cd $(srcdir); ./autogen.sh
62 51
65 else $(SHELL) configure; fi 54 else $(SHELL) configure; fi
66 55
67config.h.in: configure.ac 56config.h.in: configure.ac
68 cd $(srcdir); ./autogen.sh 57 cd $(srcdir); ./autogen.sh
69 58
70installdirs:
71 $(MKDIR) $(DESTDIR)$(bindir)
72 $(MKDIR) $(DESTDIR)$(mandir)
73
74install: installdirs
75 @for I in $(subdirs); do (cd $$I; $(MAKE) DESTDIR=$(DESTDIR) $@) || exit 1; done
76
77check: all 59check: all
78 echo "no tests" 60 echo "no tests"
79 61
80Makefiles: 62Makefiles:
81 $(SHELL) config.status 63 $(SHELL) config.status
82 64
83cleandir: realclean 65cleandir: realclean
84 66
85distclean-local: 67distclean-local:
86 rm -f *~ config.cache config.h config.log config.status libtool 68 rm -f config.cache config.h config.log config.status
87 rm -f Makefile 69 rm -f Makefile
88 70
89distdir: 71distdir:
90 cd doc && $(MAKE) distdepend 72 cd doc && $(MAKE) distdepend
91 cd src && $(MAKE) depend 73 cd src && $(MAKE) depend
92 rm -rf $(VERNAME) 74 rm -rf $(VERNAME)
93 mkdir $(VERNAME) 75 mkdir $(VERNAME)
94 rsync -aR `cat MANIFEST` $(VERNAME)/. 76 rsync -aR --copy-unsafe-links `cat MANIFEST` $(VERNAME)/.
95 77
96tar.gz: distdir 78tar.gz: distdir
97 tar cvf - $(VERNAME) | gzip -vf9 > $(VERNAME).tar.gz 79 tar cvf - $(VERNAME) | gzip -vf9 > $(VERNAME).tar.gz
98 rm -rf $(VERNAME) 80 rm -rf $(VERNAME)
99 81

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines