ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/Makefile.in
Revision: 1.28
Committed: Wed Jun 13 19:36:34 2007 UTC (16 years, 11 months ago) by ayin
Branch: MAIN
CVS Tags: rel-8_3, rel-8_4
Changes since 1.27: +1 -7 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 pcg 1.1 # ./Makefile.in -*- Makefile -*-
2    
3 ayin 1.15 DATE=@DATE@
4     VERSION=@VERSION@
5     RXVTNAME=@RXVTNAME@
6     SHELL = /bin/sh
7     prefix = @prefix@
8     exec_prefix = @exec_prefix@
9     bindir = @bindir@
10     libdir = @libdir@
11     includedir = @includedir@
12     man1dir = @mandir@/man1
13     man1ext = 1
14     man3dir = @mandir@/man3
15     man3ext = 3
16     man7dir = @mandir@/man7
17     man7ext = 7
18     PERL = @PERL@
19     INSTALL = @INSTALL@
20     INSTALL_PROGRAM = @INSTALL@ -m 755
21     INSTALL_DATA = @INSTALL@ -m 644
22    
23 root 1.11 VERNAME = rxvt-unicode-$(VERSION)
24    
25 pcg 1.1 srcdir = @srcdir@
26     VPATH = @srcdir@
27    
28     first_rule: all
29     dummy:
30    
31 root 1.10 subdirs = src doc
32 pcg 1.1
33     #-------------------------------------------------------------------------
34    
35     all allbin alldoc tags:
36     @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done
37    
38 ayin 1.22 distclean realclean: distclean-local
39 pcg 1.1
40 ayin 1.22 clean distclean realclean:
41 pcg 1.1 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done
42    
43     #
44     # entry points for other programs
45     #
46     rxvt:
47     (cd src; ${MAKE})
48    
49     #-------------------------------------------------------------------------
50 root 1.17 configure: configure.ac aclocal.m4 config.h.in
51     cd $(srcdir); ./autogen.sh
52 pcg 1.1
53     config.status:
54     if test -x config.status; then config.status --recheck; \
55     else $(SHELL) configure; fi
56    
57 root 1.17 config.h.in: configure.ac
58     cd $(srcdir); ./autogen.sh
59 pcg 1.1
60 ayin 1.28 install:
61 pcg 1.1 @for I in $(subdirs); do (cd $$I; $(MAKE) DESTDIR=$(DESTDIR) $@) || exit 1; done
62    
63 root 1.12 check: all
64     echo "no tests"
65    
66 pcg 1.1 Makefiles:
67     $(SHELL) config.status
68    
69     cleandir: realclean
70    
71 ayin 1.22 distclean-local:
72 ayin 1.20 rm -f *~ config.cache config.h config.log config.status libtool
73 sasha 1.19 rm -f Makefile
74 ayin 1.20
75 pcg 1.3 distdir:
76 root 1.8 cd doc && $(MAKE) distdepend
77 root 1.13 cd src && $(MAKE) depend
78 pcg 1.3 rm -rf $(VERNAME)
79     mkdir $(VERNAME)
80     rsync -aR `cat MANIFEST` $(VERNAME)/.
81 pcg 1.1
82 pcg 1.3 tar.gz: distdir
83     tar cvf - $(VERNAME) | gzip -vf9 > $(VERNAME).tar.gz
84 pcg 1.4 rm -rf $(VERNAME)
85 pcg 1.1
86 pcg 1.3 tar.bz2: distdir
87     tar cvf - $(VERNAME) | bzip2 -vf9 > $(VERNAME).tar.bz2
88 pcg 1.4 rm -rf $(VERNAME)
89 pcg 1.1
90 pcg 1.3 dist: tar.bz2
91 pcg 1.1
92     # ------------------------------------------------------------------------