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.34 by ayin, Fri Feb 22 15:29:45 2008 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
18PERL = @PERL@
19INSTALL = @INSTALL@
20INSTALL_PROGRAM = @INSTALL@ -m 755
21INSTALL_DATA = @INSTALL@ -m 644
3 22
4VERNAME = rxvt-unicode-$(VERSION) 23VERNAME = rxvt-unicode-$(VERSION)
5 24
6srcdir = @srcdir@ 25srcdir = @srcdir@
7VPATH = @srcdir@ 26VPATH = @srcdir@
8.PATH: @srcdir@
9 27
10first_rule: all 28first_rule: all
11dummy: 29dummy:
12 30
13subdirs = src doc 31subdirs = src doc
14allsubdirs = $(subdirs)
15 32
16DIST = INSTALL README.configure configure Makefile Makefile.in ChangeLog 33RECURSIVE_TARGETS = all allbin alldoc tags clean distclean realclean install
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
25 34
26#------------------------------------------------------------------------- 35#-------------------------------------------------------------------------
27 36
28all allbin alldoc tags: 37$(RECURSIVE_TARGETS):
29 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done 38 @for I in $(subdirs); do (cd $$I; $(MAKE) $@) || exit 1; done
30 39
31realclean: clean 40distclean realclean: distclean-local
32 $(RMF) config.h config.status config.log libtool
33
34clean:
35 $(RMF) *~ config.cache
36 $(RMF) -r autom4te.cache
37 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done
38 41
39# 42#
40# entry points for other programs 43# entry points for other programs
41# 44#
42rxvt: 45rxvt:
43 (cd src; ${MAKE}) 46 (cd src; $(MAKE))
44
45tests:
46 (cd src/test; ${MAKE} tests)
47 47
48#------------------------------------------------------------------------- 48#-------------------------------------------------------------------------
49configure: autoconf/configure.in autoconf/aclocal.m4 autoconf/config.h.in 49$(srcdir)/configure: $(srcdir)/configure.ac $(srcdir)/ptytty.m4 $(srcdir)/libev/libev.m4
50 cd $(srcdir); 50 cd $(srcdir); ./autogen.sh
51 ./.prebuild
52 51
53config.status: 52config.status: $(srcdir)/configure
54 if test -x config.status; then config.status --recheck; \ 53 ./config.status --recheck
55 else $(SHELL) configure; fi
56 54
57autoconf/config.h.in: autoconf/configure.in 55check: all
58 cd $(srcdir); 56 echo "no tests"
59 ./.prebuild
60 57
61installdirs: 58Makefile: $(srcdir)/Makefile.in
62 $(MKDIR) $(DESTDIR)$(bindir) 59doc/Makefile: $(srcdir)/doc/Makefile.in
63 $(MKDIR) $(DESTDIR)$(mandir) 60src/Makefile: $(srcdir)/src/Makefile.in
64 61Makefile doc/Makefile src/Makefile: config.status
65install: installdirs 62 ./config.status
66 @for I in $(subdirs); do (cd $$I; $(MAKE) DESTDIR=$(DESTDIR) $@) || exit 1; done
67
68Makefiles:
69 $(SHELL) config.status
70 63
71cleandir: realclean 64cleandir: realclean
72 65
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: 66distclean-local:
79 (cd $(srcdir); $(RMF) *~ config.cache config.h config.log config.status libtool) 67 rm -f config.cache config.h config.log config.status
80 @for I in $(allsubdirs); do (cd $$I; $(MAKE) $@) || exit 1; done 68 rm -f Makefile
81 (cd $(srcdir); $(RMF) Makefile autoconf/Make.common)
82 69
83distdir: 70distdir:
84 cd doc && $(MAKE) distdepend 71 cd doc && $(MAKE) distdepend
72 cd src && $(MAKE) depend
85 rm -rf $(VERNAME) 73 rm -rf $(VERNAME)
86 mkdir $(VERNAME) 74 mkdir $(VERNAME)
87 rsync -aR `cat MANIFEST` $(VERNAME)/. 75 rsync -aR --copy-unsafe-links `cat MANIFEST` $(VERNAME)/.
88 76
89tar.gz: distdir 77tar.gz: distdir
90 tar cvf - $(VERNAME) | gzip -vf9 > $(VERNAME).tar.gz 78 tar cvf - $(VERNAME) | gzip -vf9 > $(VERNAME).tar.gz
91 rm -rf $(VERNAME) 79 rm -rf $(VERNAME)
92 80

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines