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.3 by pcg, Thu Dec 18 00:56:51 2003 UTC vs.
Revision 1.12 by root, Tue Dec 27 11:30:29 2005 UTC

1# ./Makefile.in -*- Makefile -*- 1# ./Makefile.in -*- Makefile -*-
2# $Id: Makefile.in,v 1.3 2003/12/18 00:56:51 pcg Exp $
3@MCOMMON@ 2@MCOMMON@
3
4VERNAME = rxvt-unicode-$(VERSION)
4 5
5srcdir = @srcdir@ 6srcdir = @srcdir@
6VPATH = @srcdir@ 7VPATH = @srcdir@
7.PATH: @srcdir@ 8.PATH: @srcdir@
8 9
9first_rule: all 10first_rule: all
10dummy: 11dummy:
11 12
12subdirs = src doc src/graphics src/test 13subdirs = src doc
13allsubdirs = W11 $(subdirs) 14allsubdirs = $(subdirs)
14 15
15DIST = INSTALL README.configure configure Makefile Makefile.in ChangeLog 16DIST = INSTALL README.configure configure Makefile Makefile.in ChangeLog
16 17
17DIST_CFG = autoconf/aclocal.m4 autoconf/xpm.m4 autoconf/libtool.m4 \ 18DIST_CFG = autoconf/aclocal.m4 autoconf/xpm.m4 autoconf/libtool.m4 \
18 autoconf/configure.in autoconf/config.h.in \ 19 autoconf/configure.in autoconf/config.h.in \
23MKDIR = $(srcdir)/autoconf/mkinstalldirs 24MKDIR = $(srcdir)/autoconf/mkinstalldirs
24 25
25#------------------------------------------------------------------------- 26#-------------------------------------------------------------------------
26 27
27all allbin alldoc tags: 28all 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 29 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done
30 30
31realclean: clean 31realclean: clean
32 $(RMF) config.h config.status config.log libtool 32 $(RMF) config.h config.status config.log libtool
33 33
34clean: 34clean:
35 $(RMF) *~ config.cache 35 $(RMF) *~ config.cache
36 $(RMF) -r autom4te.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 37 @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 44
52tests: 45tests:
53 (cd src/test; ${MAKE} tests) 46 (cd src/test; ${MAKE} tests)
54 47
55#------------------------------------------------------------------------- 48#-------------------------------------------------------------------------
68installdirs: 61installdirs:
69 $(MKDIR) $(DESTDIR)$(bindir) 62 $(MKDIR) $(DESTDIR)$(bindir)
70 $(MKDIR) $(DESTDIR)$(mandir) 63 $(MKDIR) $(DESTDIR)$(mandir)
71 64
72install: installdirs 65install: 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 66 @for I in $(subdirs); do (cd $$I; $(MAKE) DESTDIR=$(DESTDIR) $@) || exit 1; done
67
68check: all
69 echo "no tests"
75 70
76Makefiles: 71Makefiles:
77 $(SHELL) config.status 72 $(SHELL) config.status
78 73
79cleandir: realclean 74cleandir: realclean
87 (cd $(srcdir); $(RMF) *~ config.cache config.h config.log config.status libtool) 82 (cd $(srcdir); $(RMF) *~ config.cache config.h config.log config.status libtool)
88 @for I in $(allsubdirs); do (cd $$I; $(MAKE) $@) || exit 1; done 83 @for I in $(allsubdirs); do (cd $$I; $(MAKE) $@) || exit 1; done
89 (cd $(srcdir); $(RMF) Makefile autoconf/Make.common) 84 (cd $(srcdir); $(RMF) Makefile autoconf/Make.common)
90 85
91distdir: 86distdir:
87 cd doc && $(MAKE) distdepend
92 rm -rf $(VERNAME) 88 rm -rf $(VERNAME)
93 mkdir $(VERNAME) 89 mkdir $(VERNAME)
94 rsync -aR `cat MANIFEST` $(VERNAME)/. 90 rsync -aR `cat MANIFEST` $(VERNAME)/.
95 91
96tar.gz: distdir 92tar.gz: distdir
97 tar cvf - $(VERNAME) | gzip -vf9 > $(VERNAME).tar.gz 93 tar cvf - $(VERNAME) | gzip -vf9 > $(VERNAME).tar.gz
94 rm -rf $(VERNAME)
98 95
99tar.bz2: distdir 96tar.bz2: distdir
100 tar cvf - $(VERNAME) | bzip2 -vf9 > $(VERNAME).tar.bz2 97 tar cvf - $(VERNAME) | bzip2 -vf9 > $(VERNAME).tar.bz2
98 rm -rf $(VERNAME)
101 99
102dist: tar.bz2 100dist: tar.bz2
103 101
104# ------------------------------------------------------------------------ 102# ------------------------------------------------------------------------

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines