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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines