ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/Makefile.in
Revision: 1.40
Committed: Fri Jul 23 19:18:51 2021 UTC (2 years, 9 months ago) by sf-exg
Branch: MAIN
CVS Tags: rxvt-unicode-rel-9_29, rxvt-unicode-rel-9_30, HEAD
Changes since 1.39: +2 -2 lines
Log Message:
Unbundle libptytty

File Contents

# User Rev Content
1 pcg 1.1 # ./Makefile.in -*- Makefile -*-
2    
3 sf-exg 1.39 DATE = @DATE@
4     VERSION = @VERSION@
5     RXVTNAME = @RXVTNAME@
6 ayin 1.15 SHELL = /bin/sh
7 sf-exg 1.38 prefix = @prefix@
8     exec_prefix = @exec_prefix@
9 ayin 1.15 bindir = @bindir@
10     libdir = @libdir@
11     man1dir = @mandir@/man1
12     man1ext = 1
13     man3dir = @mandir@/man3
14     man3ext = 3
15     man7dir = @mandir@/man7
16     man7ext = 7
17     PERL = @PERL@
18     INSTALL = @INSTALL@
19     INSTALL_PROGRAM = @INSTALL@ -m 755
20     INSTALL_DATA = @INSTALL@ -m 644
21    
22 root 1.11 VERNAME = rxvt-unicode-$(VERSION)
23    
24 sf-exg 1.39 srcdir = @srcdir@
25     VPATH = @srcdir@
26 pcg 1.1
27     first_rule: all
28     dummy:
29    
30 root 1.10 subdirs = src doc
31 pcg 1.1
32 ayin 1.29 RECURSIVE_TARGETS = all allbin alldoc tags clean distclean realclean install
33    
34 pcg 1.1 #-------------------------------------------------------------------------
35    
36 ayin 1.29 $(RECURSIVE_TARGETS):
37 ayin 1.30 @for I in $(subdirs); do (cd $$I; $(MAKE) $@) || exit 1; done
38 pcg 1.1
39 ayin 1.22 distclean realclean: distclean-local
40 pcg 1.1
41     #
42     # entry points for other programs
43     #
44     rxvt:
45 ayin 1.30 (cd src; $(MAKE))
46 pcg 1.1
47     #-------------------------------------------------------------------------
48 sf-exg 1.40 configure: configure.ac aclocal.m4 libev/libev.m4
49 root 1.17 cd $(srcdir); ./autogen.sh
50 pcg 1.1
51 ayin 1.35 config.status:
52     if test -x config.status; then config.status --recheck; \
53     else $(SHELL) configure; fi
54    
55 sf-exg 1.40 config.h.in: configure.ac aclocal.m4 libev/libev.m4
56 ayin 1.35 cd $(srcdir); ./autogen.sh
57 pcg 1.1
58 root 1.12 check: all
59     echo "no tests"
60    
61 ayin 1.35 Makefiles:
62     $(SHELL) 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     # ------------------------------------------------------------------------