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.10 by root, Wed Feb 2 08:09:23 2005 UTC vs.
Revision 1.25 by ayin, Wed Jun 13 11:14:00 2007 UTC

1# ./Makefile.in -*- Makefile -*- 1# ./Makefile.in -*- Makefile -*-
2# $Id: Makefile.in,v 1.10 2005/02/02 08:09:23 root 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
18MV = @MV@
19CP = @CP@
20LN = @LN@
21SED = @SED@
22AWK = @AWK@
23ECHO = @ECHO@
24CMP = @CMP@
25TBL = @TBL@
26PERL = @PERL@
27INSTALL = @INSTALL@
28INSTALL_PROGRAM = @INSTALL@ -m 755
29INSTALL_DATA = @INSTALL@ -m 644
30
31VERNAME = rxvt-unicode-$(VERSION)
4 32
5srcdir = @srcdir@ 33srcdir = @srcdir@
6VPATH = @srcdir@ 34VPATH = @srcdir@
7.PATH: @srcdir@
8 35
9first_rule: all 36first_rule: all
10dummy: 37dummy:
11 38
12subdirs = src doc 39subdirs = src doc
13allsubdirs = $(subdirs)
14 40
15DIST = INSTALL README.configure configure Makefile Makefile.in ChangeLog
16
17DIST_CFG = autoconf/aclocal.m4 autoconf/xpm.m4 autoconf/libtool.m4 \
18 autoconf/configure.in autoconf/config.h.in \
19 autoconf/Make.common.in autoconf/install-sh autoconf/mkinstalldirs \
20 autoconf/config.guess autoconf/config.sub \
21 autoconf/ltmain.sh \
22
23MKDIR = $(srcdir)/autoconf/mkinstalldirs 41MKDIR = $(srcdir)/mkinstalldirs
24 42
25#------------------------------------------------------------------------- 43#-------------------------------------------------------------------------
26 44
27all allbin alldoc tags: 45all allbin alldoc tags:
28 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done 46 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done
29 47
30realclean: clean 48distclean realclean: distclean-local
31 $(RMF) config.h config.status config.log libtool
32 49
33clean: 50clean distclean realclean:
34 $(RMF) *~ config.cache
35 $(RMF) -r autom4te.cache
36 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done 51 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done
37 52
38# 53#
39# entry points for other programs 54# entry points for other programs
40# 55#
41rxvt: 56rxvt:
42 (cd src; ${MAKE}) 57 (cd src; ${MAKE})
43 58
44tests:
45 (cd src/test; ${MAKE} tests)
46
47#------------------------------------------------------------------------- 59#-------------------------------------------------------------------------
48configure: autoconf/configure.in autoconf/aclocal.m4 autoconf/config.h.in 60configure: configure.ac aclocal.m4 config.h.in
49 cd $(srcdir); 61 cd $(srcdir); ./autogen.sh
50 ./.prebuild
51 62
52config.status: 63config.status:
53 if test -x config.status; then config.status --recheck; \ 64 if test -x config.status; then config.status --recheck; \
54 else $(SHELL) configure; fi 65 else $(SHELL) configure; fi
55 66
56autoconf/config.h.in: autoconf/configure.in 67config.h.in: configure.ac
57 cd $(srcdir); 68 cd $(srcdir); ./autogen.sh
58 ./.prebuild
59 69
60installdirs: 70installdirs:
61 $(MKDIR) $(DESTDIR)$(bindir) 71 $(MKDIR) $(DESTDIR)$(bindir)
62 $(MKDIR) $(DESTDIR)$(mandir) 72 $(MKDIR) $(DESTDIR)$(mandir)
63 73
64install: installdirs 74install: installdirs
65 @for I in $(subdirs); do (cd $$I; $(MAKE) DESTDIR=$(DESTDIR) $@) || exit 1; done 75 @for I in $(subdirs); do (cd $$I; $(MAKE) DESTDIR=$(DESTDIR) $@) || exit 1; done
66 76
77check: all
78 echo "no tests"
79
67Makefiles: 80Makefiles:
68 $(SHELL) config.status 81 $(SHELL) config.status
69 82
70cleandir: realclean 83cleandir: realclean
71 84
72# distclean goal is for making a clean source tree, but if you have run
73# configure from a different directory, then doesn't destroy all your
74# hardly compiled and linked stuff. That's why there is always $(srcdir)/
75# In that case most of those commands do nothing, except cleaning *~
76# and cleaning source links.
77distclean: 85distclean-local:
78 (cd $(srcdir); $(RMF) *~ config.cache config.h config.log config.status libtool) 86 rm -f *~ config.cache config.h config.log config.status libtool
79 @for I in $(allsubdirs); do (cd $$I; $(MAKE) $@) || exit 1; done 87 rm -f Makefile
80 (cd $(srcdir); $(RMF) Makefile autoconf/Make.common)
81 88
82distdir: 89distdir:
83 cd doc && $(MAKE) distdepend 90 cd doc && $(MAKE) distdepend
91 cd src && $(MAKE) depend
84 rm -rf $(VERNAME) 92 rm -rf $(VERNAME)
85 mkdir $(VERNAME) 93 mkdir $(VERNAME)
86 rsync -aR `cat MANIFEST` $(VERNAME)/. 94 rsync -aR `cat MANIFEST` $(VERNAME)/.
87 95
88tar.gz: distdir 96tar.gz: distdir

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines