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.14 by ayin, Mon Jan 16 16:38:20 2006 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
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
2 19
3VERNAME = rxvt-unicode-$(VERSION) 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 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/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
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 55
67check: all 56check: all
68 echo "no tests" 57 echo "no tests"
69 58
70Makefiles: 59Makefiles:
71 $(SHELL) config.status 60 $(SHELL) config.status
72 61
73cleandir: realclean 62cleandir: realclean
74 63
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: 64distclean-local:
81 (cd $(srcdir); $(RMF) *~ config.cache config.h config.log config.status libtool) 65 rm -f config.cache config.h config.log config.status
82 @for I in $(allsubdirs); do (cd $$I; $(MAKE) $@) || exit 1; done 66 rm -f Makefile
83 (cd $(srcdir); $(RMF) Makefile)
84 67
85distdir: 68distdir:
86 cd doc && $(MAKE) distdepend 69 cd doc && $(MAKE) distdepend
87 cd src && $(MAKE) depend 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