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.15 by ayin, Mon Jan 16 18:05:58 2006 UTC vs.
Revision 1.19 by sasha, Fri Jun 8 20:04:10 2007 UTC

17man7ext = 7 17man7ext = 7
18CC = @CC@ 18CC = @CC@
19CXX = @CXX@ 19CXX = @CXX@
20CPP = @CPP@ 20CPP = @CPP@
21MV = @MV@ 21MV = @MV@
22RM = @RM@
23RMF = @RM@ -f
24CP = @CP@ 22CP = @CP@
25LN = @LN@ 23LN = @LN@
26SED = @SED@ 24SED = @SED@
27AWK = @AWK@ 25AWK = @AWK@
28ECHO = @ECHO@ 26ECHO = @ECHO@
56subdirs = src doc 54subdirs = src doc
57allsubdirs = $(subdirs) 55allsubdirs = $(subdirs)
58 56
59DIST = INSTALL README.configure configure Makefile Makefile.in ChangeLog 57DIST = INSTALL README.configure configure Makefile Makefile.in ChangeLog
60 58
61DIST_CFG = autoconf/aclocal.m4 autoconf/xpm.m4 autoconf/libtool.m4 \
62 autoconf/configure.in autoconf/config.h.in \
63 autoconf/install-sh autoconf/mkinstalldirs \
64 autoconf/config.guess autoconf/config.sub \
65 autoconf/ltmain.sh \
66
67MKDIR = $(srcdir)/autoconf/mkinstalldirs 59MKDIR = $(srcdir)/mkinstalldirs
68 60
69#------------------------------------------------------------------------- 61#-------------------------------------------------------------------------
70 62
71all allbin alldoc tags: 63all allbin alldoc tags:
72 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done 64 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done
73 65
74realclean: clean 66realclean: clean
75 $(RMF) config.h config.status config.log libtool 67 rm -f config.h config.status config.log libtool
76 68
77clean: 69clean:
78 $(RMF) *~ config.cache 70 rm -f *~ config.cache
79 $(RMF) -r autom4te.cache 71 rm -f -r autom4te.cache
80 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done 72 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done
81 73
82# 74#
83# entry points for other programs 75# entry points for other programs
84# 76#
87 79
88tests: 80tests:
89 (cd src/test; ${MAKE} tests) 81 (cd src/test; ${MAKE} tests)
90 82
91#------------------------------------------------------------------------- 83#-------------------------------------------------------------------------
92configure: autoconf/configure.in autoconf/aclocal.m4 autoconf/config.h.in 84configure: configure.ac aclocal.m4 config.h.in
93 cd $(srcdir); 85 cd $(srcdir); ./autogen.sh
94 ./.prebuild
95 86
96config.status: 87config.status:
97 if test -x config.status; then config.status --recheck; \ 88 if test -x config.status; then config.status --recheck; \
98 else $(SHELL) configure; fi 89 else $(SHELL) configure; fi
99 90
100autoconf/config.h.in: autoconf/configure.in 91config.h.in: configure.ac
101 cd $(srcdir); 92 cd $(srcdir); ./autogen.sh
102 ./.prebuild
103 93
104installdirs: 94installdirs:
105 $(MKDIR) $(DESTDIR)$(bindir) 95 $(MKDIR) $(DESTDIR)$(bindir)
106 $(MKDIR) $(DESTDIR)$(mandir) 96 $(MKDIR) $(DESTDIR)$(mandir)
107 97
120# configure from a different directory, then doesn't destroy all your 110# configure from a different directory, then doesn't destroy all your
121# hardly compiled and linked stuff. That's why there is always $(srcdir)/ 111# hardly compiled and linked stuff. That's why there is always $(srcdir)/
122# In that case most of those commands do nothing, except cleaning *~ 112# In that case most of those commands do nothing, except cleaning *~
123# and cleaning source links. 113# and cleaning source links.
124distclean: 114distclean:
125 (cd $(srcdir); $(RMF) *~ config.cache config.h config.log config.status libtool) 115 (cd $(srcdir); rm -f *~ config.cache config.h config.log config.status libtool rxvtlib.h)
126 @for I in $(allsubdirs); do (cd $$I; $(MAKE) $@) || exit 1; done 116 @for I in $(allsubdirs); do (cd $$I; $(MAKE) $@; rm -f Makefile) || exit 1; done
127 (cd $(srcdir); $(RMF) Makefile) 117 rm -f Makefile
128 118
129distdir: 119distdir:
130 cd doc && $(MAKE) distdepend 120 cd doc && $(MAKE) distdepend
131 cd src && $(MAKE) depend 121 cd src && $(MAKE) depend
132 rm -rf $(VERNAME) 122 rm -rf $(VERNAME)
133 mkdir $(VERNAME) 123 mkdir $(VERNAME)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines