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.14 by ayin, Mon Jan 16 16:38:20 2006 UTC vs.
Revision 1.31 by root, Mon Nov 19 13:43:38 2007 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines