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.11 by root, Mon Feb 14 10:44:50 2005 UTC vs.
Revision 1.16 by ayin, Tue Jan 17 12:14:27 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@
12 55
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
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 60
24MKDIR = $(srcdir)/autoconf/mkinstalldirs 61MKDIR = $(srcdir)/autoconf/mkinstalldirs
25 62
26#------------------------------------------------------------------------- 63#-------------------------------------------------------------------------
27 64
63 $(MKDIR) $(DESTDIR)$(mandir) 100 $(MKDIR) $(DESTDIR)$(mandir)
64 101
65install: installdirs 102install: installdirs
66 @for I in $(subdirs); do (cd $$I; $(MAKE) DESTDIR=$(DESTDIR) $@) || exit 1; done 103 @for I in $(subdirs); do (cd $$I; $(MAKE) DESTDIR=$(DESTDIR) $@) || exit 1; done
67 104
105check: all
106 echo "no tests"
107
68Makefiles: 108Makefiles:
69 $(SHELL) config.status 109 $(SHELL) config.status
70 110
71cleandir: realclean 111cleandir: realclean
72 112
76# In that case most of those commands do nothing, except cleaning *~ 116# In that case most of those commands do nothing, except cleaning *~
77# and cleaning source links. 117# and cleaning source links.
78distclean: 118distclean:
79 (cd $(srcdir); $(RMF) *~ config.cache config.h config.log config.status libtool) 119 (cd $(srcdir); $(RMF) *~ config.cache config.h config.log config.status libtool)
80 @for I in $(allsubdirs); do (cd $$I; $(MAKE) $@) || exit 1; done 120 @for I in $(allsubdirs); do (cd $$I; $(MAKE) $@) || exit 1; done
81 (cd $(srcdir); $(RMF) Makefile autoconf/Make.common) 121 (cd $(srcdir); $(RMF) Makefile)
82 122
83distdir: 123distdir:
84 cd doc && $(MAKE) distdepend 124 cd doc && $(MAKE) distdepend
125 cd src && $(MAKE) depend
85 rm -rf $(VERNAME) 126 rm -rf $(VERNAME)
86 mkdir $(VERNAME) 127 mkdir $(VERNAME)
87 rsync -aR `cat MANIFEST` $(VERNAME)/. 128 rsync -aR `cat MANIFEST` $(VERNAME)/.
88 129
89tar.gz: distdir 130tar.gz: distdir

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines