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.2 by pcg, Mon Nov 24 17:31:26 2003 UTC vs.
Revision 1.25 by ayin, Wed Jun 13 11:14:00 2007 UTC

1# ./Makefile.in -*- Makefile -*- 1# ./Makefile.in -*- Makefile -*-
2# $Id: Makefile.in,v 1.2 2003/11/24 17:31:26 pcg Exp $ 2
3@MCOMMON@ 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
18MV = @MV@
19CP = @CP@
20LN = @LN@
21SED = @SED@
22AWK = @AWK@
23ECHO = @ECHO@
24CMP = @CMP@
25TBL = @TBL@
26PERL = @PERL@
27INSTALL = @INSTALL@
28INSTALL_PROGRAM = @INSTALL@ -m 755
29INSTALL_DATA = @INSTALL@ -m 644
30
31VERNAME = rxvt-unicode-$(VERSION)
4 32
5srcdir = @srcdir@ 33srcdir = @srcdir@
6VPATH = @srcdir@ 34VPATH = @srcdir@
7.PATH: @srcdir@
8 35
9first_rule: all 36first_rule: all
10dummy: 37dummy:
11 38
12subdirs = src doc src/graphics src/test 39subdirs = src doc
13allsubdirs = W11 $(subdirs)
14 40
15DIST = INSTALL README.configure configure Makefile Makefile.in ChangeLog
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 41MKDIR = $(srcdir)/mkinstalldirs
24 42
25#------------------------------------------------------------------------- 43#-------------------------------------------------------------------------
26 44
27all allbin alldoc tags: 45all allbin alldoc tags:
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 46 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done
30 47
31realclean: clean 48distclean realclean: distclean-local
32 $(RMF) config.h config.status config.log libtool
33 49
34clean: 50clean distclean realclean:
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 51 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done
39 52
40# 53#
41# entry points for other programs 54# entry points for other programs
42# 55#
43rxvt: 56rxvt:
44 (cd src; ${MAKE}) 57 (cd src; ${MAKE})
45 58
46clock:
47 (cd rclock; ${MAKE})
48
49graphics qplot:
50 (cd src/graphics; ${MAKE} qplot)
51
52tests:
53 (cd src/test; ${MAKE} tests)
54
55#------------------------------------------------------------------------- 59#-------------------------------------------------------------------------
56configure: autoconf/configure.in autoconf/aclocal.m4 autoconf/config.h.in 60configure: configure.ac aclocal.m4 config.h.in
57 cd $(srcdir); 61 cd $(srcdir); ./autogen.sh
58 ./.prebuild
59 62
60config.status: 63config.status:
61 if test -x config.status; then config.status --recheck; \ 64 if test -x config.status; then config.status --recheck; \
62 else $(SHELL) configure; fi 65 else $(SHELL) configure; fi
63 66
64autoconf/config.h.in: autoconf/configure.in 67config.h.in: configure.ac
65 cd $(srcdir); 68 cd $(srcdir); ./autogen.sh
66 ./.prebuild
67 69
68installdirs: 70installdirs:
69 $(MKDIR) $(DESTDIR)$(bindir) 71 $(MKDIR) $(DESTDIR)$(bindir)
70 $(MKDIR) $(DESTDIR)$(mandir) 72 $(MKDIR) $(DESTDIR)$(mandir)
71 73
72install: installdirs 74install: 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 @for I in $(subdirs); do (cd $$I; $(MAKE) DESTDIR=$(DESTDIR) $@) || exit 1; done
76
77check: all
78 echo "no tests"
75 79
76Makefiles: 80Makefiles:
77 $(SHELL) config.status 81 $(SHELL) config.status
78 82
79cleandir: realclean 83cleandir: realclean
80 84
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: 85distclean-local:
87 (cd $(srcdir); $(RMF) *~ config.cache config.h config.log config.status libtool) 86 rm -f *~ config.cache config.h config.log config.status libtool
88 @for I in $(allsubdirs); do (cd $$I; $(MAKE) $@) || exit 1; done 87 rm -f Makefile
89 (cd $(srcdir); $(RMF) Makefile autoconf/Make.common)
90 88
91distdirs: 89distdir:
90 cd doc && $(MAKE) distdepend
91 cd src && $(MAKE) depend
92 rm -rf $(VERNAME)
92 mkdir ../$(VERNAME); 93 mkdir $(VERNAME)
93 mkdir ../$(VERNAME)/autoconf; 94 rsync -aR `cat MANIFEST` $(VERNAME)/.
94 @for I in $(allsubdirs); do (cd $$I; $(MAKE) $@ || (echo "Failed to make distclean in $$I"; exit 0) ); done
95 95
96distcopy: 96tar.gz: distdir
97 $(CP) -p $(DIST) ../$(VERNAME); 97 tar cvf - $(VERNAME) | gzip -vf9 > $(VERNAME).tar.gz
98 $(CP) -p $(DIST_CFG) ../$(VERNAME)/autoconf; 98 rm -rf $(VERNAME)
99 @for I in $(allsubdirs); do (cd $$I; $(MAKE) $@) || exit 1; done
100 99
101distrib: configure autoconf/config.h.in distdirs distcopy 100tar.bz2: distdir
101 tar cvf - $(VERNAME) | bzip2 -vf9 > $(VERNAME).tar.bz2
102 rm -rf $(VERNAME)
102 103
103tar.gz: ../$(VERNAME).tar.gz 104dist: tar.bz2
104../$(VERNAME).tar.gz:
105 (cd ..; tar cvf - $(VERNAME) | gzip -f9 > $(VERNAME).tar.gz)
106
107tar.Z: ../$(VERNAME).tar.Z
108../$(VERNAME).tar.Z:
109 (cd ..; tar cvf - $(VERNAME) | compress > $(VERNAME).tar.Z)
110
111tar.bz2: ../$(VERNAME).tar.bz2
112../$(VERNAME).tar.bz2:
113 (cd ..; tar cvf - $(VERNAME) | bzip2 -f9 > $(VERNAME).tar.bz2)
114
115uuencode: tar.gz
116 uuencode ../$(VERNAME).tar.gz $(VERNAME).tar.gz > ../$(VERNAME).tgz.uu
117 105
118# ------------------------------------------------------------------------ 106# ------------------------------------------------------------------------

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines