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.4 by pcg, Thu Dec 18 07:41:39 2003 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.4 2003/12/18 07:41:39 pcg 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/graphics src/test 28subdirs = src doc
13allsubdirs = W11 $(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 @if test x@host_os@ = xcygwin; then (cd W11; ${MAKE} $@) || exit 1; fi
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 @if test x@host_os@ = xcygwin; then (cd W11; ${MAKE} $@) || exit 1; fi
38 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done
39 38
40# 39#
41# entry points for other programs 40# entry points for other programs
42# 41#
43rxvt: 42rxvt:
44 (cd src; ${MAKE}) 43 (cd src; $(MAKE))
45
46clock:
47 (cd rclock; ${MAKE})
48
49graphics qplot:
50 (cd src/graphics; ${MAKE} qplot)
51
52tests:
53 (cd src/test; ${MAKE} tests)
54 44
55#------------------------------------------------------------------------- 45#-------------------------------------------------------------------------
56configure: autoconf/configure.in autoconf/aclocal.m4 autoconf/config.h.in 46configure: configure.ac aclocal.m4 libev/libev.m4 libptytty/ptytty.m4
57 cd $(srcdir); 47 cd $(srcdir); ./autogen.sh
58 ./.prebuild
59 48
60config.status: 49config.status:
61 if test -x config.status; then config.status --recheck; \ 50 if test -x config.status; then config.status --recheck; \
62 else $(SHELL) configure; fi 51 else $(SHELL) configure; fi
63 52
64autoconf/config.h.in: autoconf/configure.in 53config.h.in: configure.ac aclocal.m4 libev/libev.m4 libptytty/ptytty.m4
65 cd $(srcdir); 54 cd $(srcdir); ./autogen.sh
66 ./.prebuild
67 55
68installdirs: 56check: all
69 $(MKDIR) $(DESTDIR)$(bindir) 57 echo "no tests"
70 $(MKDIR) $(DESTDIR)$(mandir)
71
72install: installdirs
73 @if test x@host_os@ = xcygwin; then (cd W11; ${MAKE} $@) || exit 1; fi
74 @for I in $(subdirs); do (cd $$I; $(MAKE) DESTDIR=$(DESTDIR) $@) || exit 1; done
75 58
76Makefiles: 59Makefiles:
77 $(SHELL) config.status 60 $(SHELL) config.status
78 61
79cleandir: realclean 62cleandir: realclean
80 63
81# distclean goal is for making a clean source tree, but if you have run
82# configure from a different directory, then doesn't destroy all your
83# hardly compiled and linked stuff. That's why there is always $(srcdir)/
84# In that case most of those commands do nothing, except cleaning *~
85# and cleaning source links.
86distclean: 64distclean-local:
87 (cd $(srcdir); $(RMF) *~ config.cache config.h config.log config.status libtool) 65 rm -f config.cache config.h config.log config.status
88 @for I in $(allsubdirs); do (cd $$I; $(MAKE) $@) || exit 1; done 66 rm -f Makefile
89 (cd $(srcdir); $(RMF) Makefile autoconf/Make.common)
90 67
91distdir: 68distdir:
69 cd doc && $(MAKE) distdepend
70 cd src && $(MAKE) depend
92 rm -rf $(VERNAME) 71 rm -rf $(VERNAME)
93 mkdir $(VERNAME) 72 mkdir $(VERNAME)
94 rsync -aR `cat MANIFEST` $(VERNAME)/. 73 rsync -aR --copy-unsafe-links `cat MANIFEST` $(VERNAME)/.
95 74
96tar.gz: distdir 75tar.gz: distdir
97 tar cvf - $(VERNAME) | gzip -vf9 > $(VERNAME).tar.gz 76 tar cvf - $(VERNAME) | gzip -vf9 > $(VERNAME).tar.gz
98 rm -rf $(VERNAME) 77 rm -rf $(VERNAME)
99 78

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines