ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/Makefile.in
Revision: 1.34
Committed: Fri Feb 22 15:29:45 2008 UTC (16 years, 3 months ago) by ayin
Branch: MAIN
Changes since 1.33: +8 -9 lines
Log Message:
Proper configure/makefile dependencies.

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 ayin 1.34 $(srcdir)/configure: $(srcdir)/configure.ac $(srcdir)/ptytty.m4 $(srcdir)/libev/libev.m4
50 root 1.17 cd $(srcdir); ./autogen.sh
51 pcg 1.1
52 ayin 1.34 config.status: $(srcdir)/configure
53     ./config.status --recheck
54 pcg 1.1
55 root 1.12 check: all
56     echo "no tests"
57    
58 ayin 1.34 Makefile: $(srcdir)/Makefile.in
59     doc/Makefile: $(srcdir)/doc/Makefile.in
60     src/Makefile: $(srcdir)/src/Makefile.in
61     Makefile doc/Makefile src/Makefile: config.status
62     ./config.status
63 pcg 1.1
64     cleandir: realclean
65    
66 ayin 1.22 distclean-local:
67 ayin 1.33 rm -f config.cache config.h config.log config.status
68 sasha 1.19 rm -f Makefile
69 ayin 1.20
70 pcg 1.3 distdir:
71 root 1.8 cd doc && $(MAKE) distdepend
72 root 1.13 cd src && $(MAKE) depend
73 pcg 1.3 rm -rf $(VERNAME)
74     mkdir $(VERNAME)
75 root 1.31 rsync -aR --copy-unsafe-links `cat MANIFEST` $(VERNAME)/.
76 pcg 1.1
77 pcg 1.3 tar.gz: distdir
78     tar cvf - $(VERNAME) | gzip -vf9 > $(VERNAME).tar.gz
79 pcg 1.4 rm -rf $(VERNAME)
80 pcg 1.1
81 pcg 1.3 tar.bz2: distdir
82     tar cvf - $(VERNAME) | bzip2 -vf9 > $(VERNAME).tar.bz2
83 pcg 1.4 rm -rf $(VERNAME)
84 pcg 1.1
85 pcg 1.3 dist: tar.bz2
86 pcg 1.1
87     # ------------------------------------------------------------------------