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.7 by pcg, Sat May 8 17:21:07 2004 UTC vs.
Revision 1.26 by ayin, Wed Jun 13 11:30:42 2007 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines