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.20 by ayin, Fri Jun 8 22:45:48 2007 UTC vs.
Revision 1.24 by ayin, Wed Jun 13 10:39:09 2007 UTC

28TBL = @TBL@ 28TBL = @TBL@
29PERL = @PERL@ 29PERL = @PERL@
30INSTALL = @INSTALL@ 30INSTALL = @INSTALL@
31INSTALL_PROGRAM = @INSTALL@ -m 755 31INSTALL_PROGRAM = @INSTALL@ -m 755
32INSTALL_DATA = @INSTALL@ -m 644 32INSTALL_DATA = @INSTALL@ -m 644
33CXXFLAGS = @CXXFLAGS@ 33CXXFLAGS = @CXXFLAGS@
34CPPFLAGS = @CPPFLAGS@ @XPM_CPPFLAGS@ 34CPPFLAGS = @CPPFLAGS@ @XPM_CPPFLAGS@
35LDFLAGS = @LDFLAGS@ 35LDFLAGS = @LDFLAGS@
36DEFS = @DEFS@ 36DEFS = @DEFS@
37LIBS = @LIBS@ 37LIBS = @LIBS@
38DINCLUDE = @DINCLUDE@ 38DINCLUDE = @DINCLUDE@
44 44
45VERNAME = rxvt-unicode-$(VERSION) 45VERNAME = rxvt-unicode-$(VERSION)
46 46
47srcdir = @srcdir@ 47srcdir = @srcdir@
48VPATH = @srcdir@ 48VPATH = @srcdir@
49.PATH: @srcdir@
50 49
51first_rule: all 50first_rule: all
52dummy: 51dummy:
53 52
54subdirs = src doc 53subdirs = src doc
55allsubdirs = $(subdirs)
56
57DIST = INSTALL README.configure configure Makefile Makefile.in ChangeLog
58 54
59MKDIR = $(srcdir)/mkinstalldirs 55MKDIR = $(srcdir)/mkinstalldirs
60 56
61#------------------------------------------------------------------------- 57#-------------------------------------------------------------------------
62 58
63all allbin alldoc tags: 59all allbin alldoc tags:
64 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done 60 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done
65 61
66realclean: clean 62distclean realclean: distclean-local
67 rm -f config.h config.status config.log libtool
68 63
69clean: 64clean distclean realclean:
70 rm -f *~ config.cache
71 rm -f -r autom4te.cache
72 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done 65 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done
73 66
74# 67#
75# entry points for other programs 68# entry points for other programs
76# 69#
77rxvt: 70rxvt:
78 (cd src; ${MAKE}) 71 (cd src; ${MAKE})
79
80tests:
81 (cd src/test; ${MAKE} tests)
82 72
83#------------------------------------------------------------------------- 73#-------------------------------------------------------------------------
84configure: configure.ac aclocal.m4 config.h.in 74configure: configure.ac aclocal.m4 config.h.in
85 cd $(srcdir); ./autogen.sh 75 cd $(srcdir); ./autogen.sh
86 76
104Makefiles: 94Makefiles:
105 $(SHELL) config.status 95 $(SHELL) config.status
106 96
107cleandir: realclean 97cleandir: realclean
108 98
109# distclean goal is for making a clean source tree, but if you have run
110# configure from a different directory, then doesn't destroy all your
111# hardly compiled and linked stuff. That's why there is always $(srcdir)/
112# In that case most of those commands do nothing, except cleaning *~
113# and cleaning source links.
114distclean: 99distclean-local:
115 rm -f *~ config.cache config.h config.log config.status libtool 100 rm -f *~ config.cache config.h config.log config.status libtool
116 @for I in $(allsubdirs); do (cd $$I; $(MAKE) $@) || exit 1; done
117 rm -f Makefile 101 rm -f Makefile
118 102
119distdir: 103distdir:
120 cd doc && $(MAKE) distdepend 104 cd doc && $(MAKE) distdepend
121 cd src && $(MAKE) depend 105 cd src && $(MAKE) depend

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines