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.25 by ayin, Wed Jun 13 11:14:00 2007 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
18CC = @CC@
19CXX = @CXX@
20CPP = @CPP@
21MV = @MV@ 18MV = @MV@
22RM = @RM@
23RMF = @RM@ -f
24CP = @CP@ 19CP = @CP@
25LN = @LN@ 20LN = @LN@
26SED = @SED@ 21SED = @SED@
27AWK = @AWK@ 22AWK = @AWK@
28ECHO = @ECHO@ 23ECHO = @ECHO@
30TBL = @TBL@ 25TBL = @TBL@
31PERL = @PERL@ 26PERL = @PERL@
32INSTALL = @INSTALL@ 27INSTALL = @INSTALL@
33INSTALL_PROGRAM = @INSTALL@ -m 755 28INSTALL_PROGRAM = @INSTALL@ -m 755
34INSTALL_DATA = @INSTALL@ -m 644 29INSTALL_DATA = @INSTALL@ -m 644
35CXXFLAGS = @CXXFLAGS@
36CPPFLAGS = @CPPFLAGS@ @XPM_CPPFLAGS@
37LDFLAGS = @LDFLAGS@
38DEFS = @DEFS@
39LIBS = @LIBS@
40DINCLUDE = @DINCLUDE@
41DLIB = @DLIB@
42XINC = @X_CFLAGS@ @XPM_CFLAGS@
43XLIB = @X_LIBS@ @XPM_LIBS@ -lX11 @X_EXTRA_LIBS@
44COMPILE = $(CXX) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CXXFLAGS) $(DEBUG) $(DINCLUDE) $(XINC) -I$(basedir) -I$(srcdir) -I.
45LINK = @LINKER@ $(LDFLAGS)
46 30
47VERNAME = rxvt-unicode-$(VERSION) 31VERNAME = rxvt-unicode-$(VERSION)
48 32
49srcdir = @srcdir@ 33srcdir = @srcdir@
50VPATH = @srcdir@ 34VPATH = @srcdir@
51.PATH: @srcdir@
52 35
53first_rule: all 36first_rule: all
54dummy: 37dummy:
55 38
56subdirs = src doc 39subdirs = src doc
57allsubdirs = $(subdirs)
58 40
59DIST = INSTALL README.configure configure Makefile Makefile.in ChangeLog
60
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 41MKDIR = $(srcdir)/mkinstalldirs
68 42
69#------------------------------------------------------------------------- 43#-------------------------------------------------------------------------
70 44
71all allbin alldoc tags: 45all allbin alldoc tags:
72 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done 46 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done
73 47
74realclean: clean 48distclean realclean: distclean-local
75 $(RMF) config.h config.status config.log libtool
76 49
77clean: 50clean distclean realclean:
78 $(RMF) *~ config.cache
79 $(RMF) -r autom4te.cache
80 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done 51 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done
81 52
82# 53#
83# entry points for other programs 54# entry points for other programs
84# 55#
85rxvt: 56rxvt:
86 (cd src; ${MAKE}) 57 (cd src; ${MAKE})
87 58
88tests:
89 (cd src/test; ${MAKE} tests)
90
91#------------------------------------------------------------------------- 59#-------------------------------------------------------------------------
92configure: autoconf/configure.in autoconf/aclocal.m4 autoconf/config.h.in 60configure: configure.ac aclocal.m4 config.h.in
93 cd $(srcdir); 61 cd $(srcdir); ./autogen.sh
94 ./.prebuild
95 62
96config.status: 63config.status:
97 if test -x config.status; then config.status --recheck; \ 64 if test -x config.status; then config.status --recheck; \
98 else $(SHELL) configure; fi 65 else $(SHELL) configure; fi
99 66
100autoconf/config.h.in: autoconf/configure.in 67config.h.in: configure.ac
101 cd $(srcdir); 68 cd $(srcdir); ./autogen.sh
102 ./.prebuild
103 69
104installdirs: 70installdirs:
105 $(MKDIR) $(DESTDIR)$(bindir) 71 $(MKDIR) $(DESTDIR)$(bindir)
106 $(MKDIR) $(DESTDIR)$(mandir) 72 $(MKDIR) $(DESTDIR)$(mandir)
107 73
114Makefiles: 80Makefiles:
115 $(SHELL) config.status 81 $(SHELL) config.status
116 82
117cleandir: realclean 83cleandir: realclean
118 84
119# 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
121# hardly compiled and linked stuff. That's why there is always $(srcdir)/
122# In that case most of those commands do nothing, except cleaning *~
123# and cleaning source links.
124distclean: 85distclean-local:
125 (cd $(srcdir); $(RMF) *~ config.cache config.h config.log config.status libtool) 86 rm -f *~ config.cache config.h config.log config.status libtool
126 @for I in $(allsubdirs); do (cd $$I; $(MAKE) $@) || exit 1; done 87 rm -f Makefile
127 (cd $(srcdir); $(RMF) Makefile)
128 88
129distdir: 89distdir:
130 cd doc && $(MAKE) distdepend 90 cd doc && $(MAKE) distdepend
131 cd src && $(MAKE) depend 91 cd src && $(MAKE) depend
132 rm -rf $(VERNAME) 92 rm -rf $(VERNAME)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines