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.28 by ayin, Wed Jun 13 19:36:34 2007 UTC vs.
Revision 1.35 by ayin, Fri Feb 22 16:09:52 2008 UTC

28first_rule: all 28first_rule: all
29dummy: 29dummy:
30 30
31subdirs = src doc 31subdirs = src doc
32 32
33RECURSIVE_TARGETS = all allbin alldoc tags clean distclean realclean install
34
33#------------------------------------------------------------------------- 35#-------------------------------------------------------------------------
34 36
35all allbin alldoc tags: 37$(RECURSIVE_TARGETS):
36 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done 38 @for I in $(subdirs); do (cd $$I; $(MAKE) $@) || exit 1; done
37 39
38distclean realclean: distclean-local 40distclean realclean: distclean-local
39
40clean distclean realclean:
41 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done
42 41
43# 42#
44# entry points for other programs 43# entry points for other programs
45# 44#
46rxvt: 45rxvt:
47 (cd src; ${MAKE}) 46 (cd src; $(MAKE))
48 47
49#------------------------------------------------------------------------- 48#-------------------------------------------------------------------------
50configure: configure.ac aclocal.m4 config.h.in 49configure: configure.ac aclocal.m4 config.h.in
51 cd $(srcdir); ./autogen.sh 50 cd $(srcdir); ./autogen.sh
52 51
55 else $(SHELL) configure; fi 54 else $(SHELL) configure; fi
56 55
57config.h.in: configure.ac 56config.h.in: configure.ac
58 cd $(srcdir); ./autogen.sh 57 cd $(srcdir); ./autogen.sh
59 58
60install:
61 @for I in $(subdirs); do (cd $$I; $(MAKE) DESTDIR=$(DESTDIR) $@) || exit 1; done
62
63check: all 59check: all
64 echo "no tests" 60 echo "no tests"
65 61
66Makefiles: 62Makefiles:
67 $(SHELL) config.status 63 $(SHELL) config.status
68 64
69cleandir: realclean 65cleandir: realclean
70 66
71distclean-local: 67distclean-local:
72 rm -f *~ config.cache config.h config.log config.status libtool 68 rm -f config.cache config.h config.log config.status
73 rm -f Makefile 69 rm -f Makefile
74 70
75distdir: 71distdir:
76 cd doc && $(MAKE) distdepend 72 cd doc && $(MAKE) distdepend
77 cd src && $(MAKE) depend 73 cd src && $(MAKE) depend
78 rm -rf $(VERNAME) 74 rm -rf $(VERNAME)
79 mkdir $(VERNAME) 75 mkdir $(VERNAME)
80 rsync -aR `cat MANIFEST` $(VERNAME)/. 76 rsync -aR --copy-unsafe-links `cat MANIFEST` $(VERNAME)/.
81 77
82tar.gz: distdir 78tar.gz: distdir
83 tar cvf - $(VERNAME) | gzip -vf9 > $(VERNAME).tar.gz 79 tar cvf - $(VERNAME) | gzip -vf9 > $(VERNAME).tar.gz
84 rm -rf $(VERNAME) 80 rm -rf $(VERNAME)
85 81

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines