ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/cvsroot/rxvt-unicode/Makefile.in
(Generate patch)

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines