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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines