ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/Makefile.in
Revision: 1.37
Committed: Fri Dec 23 00:20:45 2011 UTC (12 years, 6 months ago) by sf-exg
Branch: MAIN
Changes since 1.36: +0 -3 lines
Log Message:
Remove unused makefile variables.

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