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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines