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.34 by ayin, Fri Feb 22 15:29:45 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 49$(srcdir)/configure: $(srcdir)/configure.ac $(srcdir)/ptytty.m4 $(srcdir)/libev/libev.m4
56 cd $(srcdir); ./autogen.sh 50 cd $(srcdir); ./autogen.sh
57 51
58config.status: 52config.status: $(srcdir)/configure
59 if test -x config.status; then config.status --recheck; \ 53 ./config.status --recheck
60 else $(SHELL) configure; fi
61
62config.h.in: configure.ac
63 cd $(srcdir); ./autogen.sh
64
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 54
72check: all 55check: all
73 echo "no tests" 56 echo "no tests"
74 57
75Makefiles: 58Makefile: $(srcdir)/Makefile.in
76 $(SHELL) config.status 59doc/Makefile: $(srcdir)/doc/Makefile.in
60src/Makefile: $(srcdir)/src/Makefile.in
61Makefile doc/Makefile src/Makefile: config.status
62 ./config.status
77 63
78cleandir: realclean 64cleandir: realclean
79 65
80distclean-local: 66distclean-local:
81 rm -f *~ config.cache config.h config.log config.status libtool 67 rm -f config.cache config.h config.log config.status
82 rm -f Makefile 68 rm -f Makefile
83 69
84distdir: 70distdir:
85 cd doc && $(MAKE) distdepend 71 cd doc && $(MAKE) distdepend
86 cd src && $(MAKE) depend 72 cd src && $(MAKE) depend
87 rm -rf $(VERNAME) 73 rm -rf $(VERNAME)
88 mkdir $(VERNAME) 74 mkdir $(VERNAME)
89 rsync -aR `cat MANIFEST` $(VERNAME)/. 75 rsync -aR --copy-unsafe-links `cat MANIFEST` $(VERNAME)/.
90 76
91tar.gz: distdir 77tar.gz: distdir
92 tar cvf - $(VERNAME) | gzip -vf9 > $(VERNAME).tar.gz 78 tar cvf - $(VERNAME) | gzip -vf9 > $(VERNAME).tar.gz
93 rm -rf $(VERNAME) 79 rm -rf $(VERNAME)
94 80

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines