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.6 by pcg, Sun Mar 14 21:51:38 2004 UTC vs.
Revision 1.15 by ayin, Mon Jan 16 18:05:58 2006 UTC

1# ./Makefile.in -*- Makefile -*- 1# ./Makefile.in -*- Makefile -*-
2# $Id: Makefile.in,v 1.6 2004/03/14 21:51:38 pcg Exp $ 2
3@MCOMMON@ 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)
46
47VERNAME = rxvt-unicode-$(VERSION)
4 48
5srcdir = @srcdir@ 49srcdir = @srcdir@
6VPATH = @srcdir@ 50VPATH = @srcdir@
7.PATH: @srcdir@ 51.PATH: @srcdir@
8 52
9first_rule: all 53first_rule: all
10dummy: 54dummy:
11 55
12subdirs = src doc src/test 56subdirs = src doc
13allsubdirs = W11 $(subdirs) 57allsubdirs = $(subdirs)
14 58
15DIST = INSTALL README.configure configure Makefile Makefile.in ChangeLog 59DIST = INSTALL README.configure configure Makefile Makefile.in ChangeLog
16 60
17DIST_CFG = autoconf/aclocal.m4 autoconf/xpm.m4 autoconf/libtool.m4 \ 61DIST_CFG = autoconf/aclocal.m4 autoconf/xpm.m4 autoconf/libtool.m4 \
18 autoconf/configure.in autoconf/config.h.in \ 62 autoconf/configure.in autoconf/config.h.in \
19 autoconf/Make.common.in autoconf/install-sh autoconf/mkinstalldirs \ 63 autoconf/install-sh autoconf/mkinstalldirs \
20 autoconf/config.guess autoconf/config.sub \ 64 autoconf/config.guess autoconf/config.sub \
21 autoconf/ltmain.sh \ 65 autoconf/ltmain.sh \
22 66
23MKDIR = $(srcdir)/autoconf/mkinstalldirs 67MKDIR = $(srcdir)/autoconf/mkinstalldirs
24 68
25#------------------------------------------------------------------------- 69#-------------------------------------------------------------------------
26 70
27all allbin alldoc tags: 71all allbin alldoc tags:
28 @if test x@host_os@ = xcygwin; then (cd W11; ${MAKE} $@) || exit 1; fi
29 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done 72 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done
30 73
31realclean: clean 74realclean: clean
32 $(RMF) config.h config.status config.log libtool 75 $(RMF) config.h config.status config.log libtool
33 76
34clean: 77clean:
35 $(RMF) *~ config.cache 78 $(RMF) *~ config.cache
36 $(RMF) -r autom4te.cache 79 $(RMF) -r autom4te.cache
37 @if test x@host_os@ = xcygwin; then (cd W11; ${MAKE} $@) || exit 1; fi
38 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done 80 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done
39 81
40# 82#
41# entry points for other programs 83# entry points for other programs
42# 84#
62installdirs: 104installdirs:
63 $(MKDIR) $(DESTDIR)$(bindir) 105 $(MKDIR) $(DESTDIR)$(bindir)
64 $(MKDIR) $(DESTDIR)$(mandir) 106 $(MKDIR) $(DESTDIR)$(mandir)
65 107
66install: installdirs 108install: installdirs
67 @if test x@host_os@ = xcygwin; then (cd W11; ${MAKE} $@) || exit 1; fi
68 @for I in $(subdirs); do (cd $$I; $(MAKE) DESTDIR=$(DESTDIR) $@) || exit 1; done 109 @for I in $(subdirs); do (cd $$I; $(MAKE) DESTDIR=$(DESTDIR) $@) || exit 1; done
110
111check: all
112 echo "no tests"
69 113
70Makefiles: 114Makefiles:
71 $(SHELL) config.status 115 $(SHELL) config.status
72 116
73cleandir: realclean 117cleandir: realclean
78# In that case most of those commands do nothing, except cleaning *~ 122# In that case most of those commands do nothing, except cleaning *~
79# and cleaning source links. 123# and cleaning source links.
80distclean: 124distclean:
81 (cd $(srcdir); $(RMF) *~ config.cache config.h config.log config.status libtool) 125 (cd $(srcdir); $(RMF) *~ config.cache config.h config.log config.status libtool)
82 @for I in $(allsubdirs); do (cd $$I; $(MAKE) $@) || exit 1; done 126 @for I in $(allsubdirs); do (cd $$I; $(MAKE) $@) || exit 1; done
83 (cd $(srcdir); $(RMF) Makefile autoconf/Make.common) 127 (cd $(srcdir); $(RMF) Makefile)
84 128
85distdir: 129distdir:
86 cd doc && $(MAKE) yodl/versioninfo.yo 130 cd doc && $(MAKE) distdepend
131 cd src && $(MAKE) depend
87 rm -rf $(VERNAME) 132 rm -rf $(VERNAME)
88 mkdir $(VERNAME) 133 mkdir $(VERNAME)
89 rsync -aR `cat MANIFEST` $(VERNAME)/. 134 rsync -aR `cat MANIFEST` $(VERNAME)/.
90 135
91tar.gz: distdir 136tar.gz: distdir

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines