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.12 by root, Tue Dec 27 11:30:29 2005 UTC vs.
Revision 1.17 by root, Thu Jan 19 12:03:06 2006 UTC

1# ./Makefile.in -*- Makefile -*- 1# ./Makefile.in -*- Makefile -*-
2@MCOMMON@ 2
3DATE=@DATE@
4VERSION=@VERSION@
5RXVTNAME=@RXVTNAME@
6SHELL = /bin/sh
7prefix = @prefix@
8exec_prefix = @exec_prefix@
9bindir = @bindir@
10libdir = @libdir@
11includedir = @includedir@
12man1dir = @mandir@/man1
13man1ext = 1
14man3dir = @mandir@/man3
15man3ext = 3
16man7dir = @mandir@/man7
17man7ext = 7
18CC = @CC@
19CXX = @CXX@
20CPP = @CPP@
21MV = @MV@
22RM = @RM@
23RMF = @RM@ -f
24CP = @CP@
25LN = @LN@
26SED = @SED@
27AWK = @AWK@
28ECHO = @ECHO@
29CMP = @CMP@
30TBL = @TBL@
31PERL = @PERL@
32INSTALL = @INSTALL@
33INSTALL_PROGRAM = @INSTALL@ -m 755
34INSTALL_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)
3 46
4VERNAME = rxvt-unicode-$(VERSION) 47VERNAME = rxvt-unicode-$(VERSION)
5 48
6srcdir = @srcdir@ 49srcdir = @srcdir@
7VPATH = @srcdir@ 50VPATH = @srcdir@
13subdirs = src doc 56subdirs = src doc
14allsubdirs = $(subdirs) 57allsubdirs = $(subdirs)
15 58
16DIST = INSTALL README.configure configure Makefile Makefile.in ChangeLog 59DIST = INSTALL README.configure configure Makefile Makefile.in ChangeLog
17 60
18DIST_CFG = autoconf/aclocal.m4 autoconf/xpm.m4 autoconf/libtool.m4 \
19 autoconf/configure.in autoconf/config.h.in \
20 autoconf/Make.common.in autoconf/install-sh autoconf/mkinstalldirs \
21 autoconf/config.guess autoconf/config.sub \
22 autoconf/ltmain.sh \
23
24MKDIR = $(srcdir)/autoconf/mkinstalldirs 61MKDIR = $(srcdir)/mkinstalldirs
25 62
26#------------------------------------------------------------------------- 63#-------------------------------------------------------------------------
27 64
28all allbin alldoc tags: 65all allbin alldoc tags:
29 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done 66 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done
44 81
45tests: 82tests:
46 (cd src/test; ${MAKE} tests) 83 (cd src/test; ${MAKE} tests)
47 84
48#------------------------------------------------------------------------- 85#-------------------------------------------------------------------------
49configure: autoconf/configure.in autoconf/aclocal.m4 autoconf/config.h.in 86configure: configure.ac aclocal.m4 config.h.in
50 cd $(srcdir); 87 cd $(srcdir); ./autogen.sh
51 ./.prebuild
52 88
53config.status: 89config.status:
54 if test -x config.status; then config.status --recheck; \ 90 if test -x config.status; then config.status --recheck; \
55 else $(SHELL) configure; fi 91 else $(SHELL) configure; fi
56 92
57autoconf/config.h.in: autoconf/configure.in 93config.h.in: configure.ac
58 cd $(srcdir); 94 cd $(srcdir); ./autogen.sh
59 ./.prebuild
60 95
61installdirs: 96installdirs:
62 $(MKDIR) $(DESTDIR)$(bindir) 97 $(MKDIR) $(DESTDIR)$(bindir)
63 $(MKDIR) $(DESTDIR)$(mandir) 98 $(MKDIR) $(DESTDIR)$(mandir)
64 99
79# In that case most of those commands do nothing, except cleaning *~ 114# In that case most of those commands do nothing, except cleaning *~
80# and cleaning source links. 115# and cleaning source links.
81distclean: 116distclean:
82 (cd $(srcdir); $(RMF) *~ config.cache config.h config.log config.status libtool) 117 (cd $(srcdir); $(RMF) *~ config.cache config.h config.log config.status libtool)
83 @for I in $(allsubdirs); do (cd $$I; $(MAKE) $@) || exit 1; done 118 @for I in $(allsubdirs); do (cd $$I; $(MAKE) $@) || exit 1; done
84 (cd $(srcdir); $(RMF) Makefile autoconf/Make.common) 119 (cd $(srcdir); $(RMF) Makefile)
85 120
86distdir: 121distdir:
87 cd doc && $(MAKE) distdepend 122 cd doc && $(MAKE) distdepend
123 cd src && $(MAKE) depend
88 rm -rf $(VERNAME) 124 rm -rf $(VERNAME)
89 mkdir $(VERNAME) 125 mkdir $(VERNAME)
90 rsync -aR `cat MANIFEST` $(VERNAME)/. 126 rsync -aR `cat MANIFEST` $(VERNAME)/.
91 127
92tar.gz: distdir 128tar.gz: distdir

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines