ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/Makefile.in
Revision: 1.31
Committed: Mon Nov 19 13:43:38 2007 UTC (16 years, 6 months ago) by root
Branch: MAIN
CVS Tags: rel-8_5a, rel-8_8, rel-8_9, rel-8_6, rel-8_7
Changes since 1.30: +1 -1 lines
Log Message:
don't understand why rsync does what it does, but the cheap workaround seems to work

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 ayin 1.29 RECURSIVE_TARGETS = all allbin alldoc tags clean distclean realclean install
34    
35 pcg 1.1 #-------------------------------------------------------------------------
36    
37 ayin 1.29 $(RECURSIVE_TARGETS):
38 ayin 1.30 @for I in $(subdirs); do (cd $$I; $(MAKE) $@) || exit 1; done
39 pcg 1.1
40 ayin 1.22 distclean realclean: distclean-local
41 pcg 1.1
42     #
43     # entry points for other programs
44     #
45     rxvt:
46 ayin 1.30 (cd src; $(MAKE))
47 pcg 1.1
48     #-------------------------------------------------------------------------
49 root 1.17 configure: configure.ac aclocal.m4 config.h.in
50     cd $(srcdir); ./autogen.sh
51 pcg 1.1
52     config.status:
53     if test -x config.status; then config.status --recheck; \
54     else $(SHELL) configure; fi
55    
56 root 1.17 config.h.in: configure.ac
57     cd $(srcdir); ./autogen.sh
58 pcg 1.1
59 root 1.12 check: all
60     echo "no tests"
61    
62 pcg 1.1 Makefiles:
63     $(SHELL) config.status
64    
65     cleandir: realclean
66    
67 ayin 1.22 distclean-local:
68 ayin 1.20 rm -f *~ config.cache config.h config.log config.status libtool
69 sasha 1.19 rm -f Makefile
70 ayin 1.20
71 pcg 1.3 distdir:
72 root 1.8 cd doc && $(MAKE) distdepend
73 root 1.13 cd src && $(MAKE) depend
74 pcg 1.3 rm -rf $(VERNAME)
75     mkdir $(VERNAME)
76 root 1.31 rsync -aR --copy-unsafe-links `cat MANIFEST` $(VERNAME)/.
77 pcg 1.1
78 pcg 1.3 tar.gz: distdir
79     tar cvf - $(VERNAME) | gzip -vf9 > $(VERNAME).tar.gz
80 pcg 1.4 rm -rf $(VERNAME)
81 pcg 1.1
82 pcg 1.3 tar.bz2: distdir
83     tar cvf - $(VERNAME) | bzip2 -vf9 > $(VERNAME).tar.bz2
84 pcg 1.4 rm -rf $(VERNAME)
85 pcg 1.1
86 pcg 1.3 dist: tar.bz2
87 pcg 1.1
88     # ------------------------------------------------------------------------