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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines