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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines