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.1 by pcg, Mon Nov 24 17:28:07 2003 UTC vs.
Revision 1.14 by ayin, Mon Jan 16 16:38:20 2006 UTC

1# ./Makefile.in -*- Makefile -*- 1# ./Makefile.in -*- Makefile -*-
2# $Id: Makefile.in,v 1.1 2003/11/24 17:28:07 pcg Exp $ 2
3@MCOMMON@ 3VERNAME = rxvt-unicode-$(VERSION)
4 4
5srcdir = @srcdir@ 5srcdir = @srcdir@
6VPATH = @srcdir@ 6VPATH = @srcdir@
7.PATH: @srcdir@ 7.PATH: @srcdir@
8 8
9first_rule: all 9first_rule: all
10dummy: 10dummy:
11 11
12subdirs = src doc src/graphics src/test 12subdirs = src doc
13allsubdirs = W11 $(subdirs) 13allsubdirs = $(subdirs)
14 14
15DIST = INSTALL README.configure configure Makefile Makefile.in ChangeLog 15DIST = INSTALL README.configure configure Makefile Makefile.in ChangeLog
16 16
17DIST_CFG = autoconf/aclocal.m4 autoconf/xpm.m4 autoconf/libtool.m4 \ 17DIST_CFG = autoconf/aclocal.m4 autoconf/xpm.m4 autoconf/libtool.m4 \
18 autoconf/configure.in autoconf/config.h.in \ 18 autoconf/configure.in autoconf/config.h.in \
19 autoconf/Make.common.in autoconf/install-sh autoconf/mkinstalldirs \ 19 autoconf/install-sh autoconf/mkinstalldirs \
20 autoconf/config.guess autoconf/config.sub \ 20 autoconf/config.guess autoconf/config.sub \
21 autoconf/ltmain.sh \ 21 autoconf/ltmain.sh \
22 22
23MKDIR = $(srcdir)/autoconf/mkinstalldirs 23MKDIR = $(srcdir)/autoconf/mkinstalldirs
24 24
25#------------------------------------------------------------------------- 25#-------------------------------------------------------------------------
26 26
27all allbin alldoc tags: 27all 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 28 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done
30 29
31realclean: clean 30realclean: clean
32 $(RMF) config.h config.status config.log libtool 31 $(RMF) config.h config.status config.log libtool
33 32
34clean: 33clean:
35 $(RMF) *~ config.cache 34 $(RMF) *~ config.cache
36 $(RMF) -r autom4te.cache 35 $(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 36 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done
39 37
40# 38#
41# entry points for other programs 39# entry points for other programs
42# 40#
43rxvt: 41rxvt:
44 (cd src; ${MAKE}) 42 (cd src; ${MAKE})
45
46clock:
47 (cd rclock; ${MAKE})
48
49graphics qplot:
50 (cd src/graphics; ${MAKE} qplot)
51 43
52tests: 44tests:
53 (cd src/test; ${MAKE} tests) 45 (cd src/test; ${MAKE} tests)
54 46
55#------------------------------------------------------------------------- 47#-------------------------------------------------------------------------
68installdirs: 60installdirs:
69 $(MKDIR) $(DESTDIR)$(bindir) 61 $(MKDIR) $(DESTDIR)$(bindir)
70 $(MKDIR) $(DESTDIR)$(mandir) 62 $(MKDIR) $(DESTDIR)$(mandir)
71 63
72install: installdirs 64install: 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 65 @for I in $(subdirs); do (cd $$I; $(MAKE) DESTDIR=$(DESTDIR) $@) || exit 1; done
66
67check: all
68 echo "no tests"
75 69
76Makefiles: 70Makefiles:
77 $(SHELL) config.status 71 $(SHELL) config.status
78 72
79cleandir: realclean 73cleandir: realclean
84# In that case most of those commands do nothing, except cleaning *~ 78# In that case most of those commands do nothing, except cleaning *~
85# and cleaning source links. 79# and cleaning source links.
86distclean: 80distclean:
87 (cd $(srcdir); $(RMF) *~ config.cache config.h config.log config.status libtool) 81 (cd $(srcdir); $(RMF) *~ config.cache config.h config.log config.status libtool)
88 @for I in $(allsubdirs); do (cd $$I; $(MAKE) $@) || exit 1; done 82 @for I in $(allsubdirs); do (cd $$I; $(MAKE) $@) || exit 1; done
89 (cd $(srcdir); $(RMF) Makefile autoconf/Make.common) 83 (cd $(srcdir); $(RMF) Makefile)
90 84
91distdirs: 85distdir:
86 cd doc && $(MAKE) distdepend
87 cd src && $(MAKE) depend
88 rm -rf $(VERNAME)
92 mkdir ../$(VERNAME); 89 mkdir $(VERNAME)
93 mkdir ../$(VERNAME)/autoconf; 90 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 91
96distcopy: 92tar.gz: distdir
97 $(CP) -p $(DIST) ../$(VERNAME); 93 tar cvf - $(VERNAME) | gzip -vf9 > $(VERNAME).tar.gz
98 $(CP) -p $(DIST_CFG) ../$(VERNAME)/autoconf; 94 rm -rf $(VERNAME)
99 @for I in $(allsubdirs); do (cd $$I; $(MAKE) $@) || exit 1; done
100 95
101distrib: configure autoconf/config.h.in distdirs distcopy 96tar.bz2: distdir
97 tar cvf - $(VERNAME) | bzip2 -vf9 > $(VERNAME).tar.bz2
98 rm -rf $(VERNAME)
102 99
103tar.gz: ../$(VERNAME).tar.gz 100dist: 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 101
118# ------------------------------------------------------------------------ 102# ------------------------------------------------------------------------

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines