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.22 by ayin, Tue Jun 12 23:36:23 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@
30TBL = @TBL@ 28TBL = @TBL@
31PERL = @PERL@ 29PERL = @PERL@
32INSTALL = @INSTALL@ 30INSTALL = @INSTALL@
33INSTALL_PROGRAM = @INSTALL@ -m 755 31INSTALL_PROGRAM = @INSTALL@ -m 755
34INSTALL_DATA = @INSTALL@ -m 644 32INSTALL_DATA = @INSTALL@ -m 644
35CXXFLAGS = @CXXFLAGS@ 33CXXFLAGS = @CXXFLAGS@
36CPPFLAGS = @CPPFLAGS@ @XPM_CPPFLAGS@ 34CPPFLAGS = @CPPFLAGS@ @XPM_CPPFLAGS@
37LDFLAGS = @LDFLAGS@ 35LDFLAGS = @LDFLAGS@
38DEFS = @DEFS@ 36DEFS = @DEFS@
39LIBS = @LIBS@ 37LIBS = @LIBS@
40DINCLUDE = @DINCLUDE@ 38DINCLUDE = @DINCLUDE@
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 66distclean realclean: distclean-local
75 $(RMF) config.h config.status config.log libtool
76 67
77clean: 68clean distclean realclean:
78 $(RMF) *~ config.cache
79 $(RMF) -r autom4te.cache
80 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done 69 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done
81 70
82# 71#
83# entry points for other programs 72# entry points for other programs
84# 73#
87 76
88tests: 77tests:
89 (cd src/test; ${MAKE} tests) 78 (cd src/test; ${MAKE} tests)
90 79
91#------------------------------------------------------------------------- 80#-------------------------------------------------------------------------
92configure: autoconf/configure.in autoconf/aclocal.m4 autoconf/config.h.in 81configure: configure.ac aclocal.m4 config.h.in
93 cd $(srcdir); 82 cd $(srcdir); ./autogen.sh
94 ./.prebuild
95 83
96config.status: 84config.status:
97 if test -x config.status; then config.status --recheck; \ 85 if test -x config.status; then config.status --recheck; \
98 else $(SHELL) configure; fi 86 else $(SHELL) configure; fi
99 87
100autoconf/config.h.in: autoconf/configure.in 88config.h.in: configure.ac
101 cd $(srcdir); 89 cd $(srcdir); ./autogen.sh
102 ./.prebuild
103 90
104installdirs: 91installdirs:
105 $(MKDIR) $(DESTDIR)$(bindir) 92 $(MKDIR) $(DESTDIR)$(bindir)
106 $(MKDIR) $(DESTDIR)$(mandir) 93 $(MKDIR) $(DESTDIR)$(mandir)
107 94
119# distclean goal is for making a clean source tree, but if you have run 106# distclean goal is for making a clean source tree, but if you have run
120# configure from a different directory, then doesn't destroy all your 107# configure from a different directory, then doesn't destroy all your
121# hardly compiled and linked stuff. That's why there is always $(srcdir)/ 108# hardly compiled and linked stuff. That's why there is always $(srcdir)/
122# In that case most of those commands do nothing, except cleaning *~ 109# In that case most of those commands do nothing, except cleaning *~
123# and cleaning source links. 110# and cleaning source links.
124distclean: 111distclean-local:
125 (cd $(srcdir); $(RMF) *~ config.cache config.h config.log config.status libtool) 112 rm -f *~ config.cache config.h config.log config.status libtool
126 @for I in $(allsubdirs); do (cd $$I; $(MAKE) $@) || exit 1; done 113 rm -f Makefile
127 (cd $(srcdir); $(RMF) Makefile)
128 114
129distdir: 115distdir:
130 cd doc && $(MAKE) distdepend 116 cd doc && $(MAKE) distdepend
131 cd src && $(MAKE) depend 117 cd src && $(MAKE) depend
132 rm -rf $(VERNAME) 118 rm -rf $(VERNAME)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines