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.9 by root, Mon Jan 17 01:55:12 2005 UTC vs.
Revision 1.38 by sf-exg, Mon Dec 26 15:44:01 2011 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines