ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/Makefile.in
(Generate patch)

Comparing rxvt-unicode/Makefile.in (file contents):
Revision 1.29 by ayin, Mon Nov 12 18:10:47 2007 UTC vs.
Revision 1.37 by sf-exg, Fri Dec 23 00:20:45 2011 UTC

2 2
3DATE=@DATE@ 3DATE=@DATE@
4VERSION=@VERSION@ 4VERSION=@VERSION@
5RXVTNAME=@RXVTNAME@ 5RXVTNAME=@RXVTNAME@
6SHELL = /bin/sh 6SHELL = /bin/sh
7prefix = @prefix@
8exec_prefix = @exec_prefix@
9bindir = @bindir@ 7bindir = @bindir@
10libdir = @libdir@ 8libdir = @libdir@
11includedir = @includedir@
12man1dir = @mandir@/man1 9man1dir = @mandir@/man1
13man1ext = 1 10man1ext = 1
14man3dir = @mandir@/man3 11man3dir = @mandir@/man3
15man3ext = 3 12man3ext = 3
16man7dir = @mandir@/man7 13man7dir = @mandir@/man7
33RECURSIVE_TARGETS = all allbin alldoc tags clean distclean realclean install 30RECURSIVE_TARGETS = all allbin alldoc tags clean distclean realclean install
34 31
35#------------------------------------------------------------------------- 32#-------------------------------------------------------------------------
36 33
37$(RECURSIVE_TARGETS): 34$(RECURSIVE_TARGETS):
38 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done 35 @for I in $(subdirs); do (cd $$I; $(MAKE) $@) || exit 1; done
39 36
40distclean realclean: distclean-local 37distclean realclean: distclean-local
41 38
42# 39#
43# entry points for other programs 40# entry points for other programs
44# 41#
45rxvt: 42rxvt:
46 (cd src; ${MAKE}) 43 (cd src; $(MAKE))
47 44
48#------------------------------------------------------------------------- 45#-------------------------------------------------------------------------
49configure: configure.ac aclocal.m4 config.h.in 46configure: configure.ac aclocal.m4 libev/libev.m4 libptytty/ptytty.m4
50 cd $(srcdir); ./autogen.sh 47 cd $(srcdir); ./autogen.sh
51 48
52config.status: 49config.status:
53 if test -x config.status; then config.status --recheck; \ 50 if test -x config.status; then config.status --recheck; \
54 else $(SHELL) configure; fi 51 else $(SHELL) configure; fi
55 52
56config.h.in: configure.ac 53config.h.in: configure.ac aclocal.m4 libev/libev.m4 libptytty/ptytty.m4
57 cd $(srcdir); ./autogen.sh 54 cd $(srcdir); ./autogen.sh
58 55
59check: all 56check: all
60 echo "no tests" 57 echo "no tests"
61 58
63 $(SHELL) config.status 60 $(SHELL) config.status
64 61
65cleandir: realclean 62cleandir: realclean
66 63
67distclean-local: 64distclean-local:
68 rm -f *~ config.cache config.h config.log config.status libtool 65 rm -f config.cache config.h config.log config.status
69 rm -f Makefile 66 rm -f Makefile
70 67
71distdir: 68distdir:
72 cd doc && $(MAKE) distdepend 69 cd doc && $(MAKE) distdepend
73 cd src && $(MAKE) depend 70 cd src && $(MAKE) depend
74 rm -rf $(VERNAME) 71 rm -rf $(VERNAME)
75 mkdir $(VERNAME) 72 mkdir $(VERNAME)
76 rsync -aR `cat MANIFEST` $(VERNAME)/. 73 rsync -aR --copy-unsafe-links `cat MANIFEST` $(VERNAME)/.
77 74
78tar.gz: distdir 75tar.gz: distdir
79 tar cvf - $(VERNAME) | gzip -vf9 > $(VERNAME).tar.gz 76 tar cvf - $(VERNAME) | gzip -vf9 > $(VERNAME).tar.gz
80 rm -rf $(VERNAME) 77 rm -rf $(VERNAME)
81 78

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines