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.20 by ayin, Fri Jun 8 22:45:48 2007 UTC vs.
Revision 1.38 by sf-exg, Mon Dec 26 15:44:01 2011 UTC

6SHELL = /bin/sh 6SHELL = /bin/sh
7prefix = @prefix@ 7prefix = @prefix@
8exec_prefix = @exec_prefix@ 8exec_prefix = @exec_prefix@
9bindir = @bindir@ 9bindir = @bindir@
10libdir = @libdir@ 10libdir = @libdir@
11includedir = @includedir@
12man1dir = @mandir@/man1 11man1dir = @mandir@/man1
13man1ext = 1 12man1ext = 1
14man3dir = @mandir@/man3 13man3dir = @mandir@/man3
15man3ext = 3 14man3ext = 3
16man7dir = @mandir@/man7 15man7dir = @mandir@/man7
17man7ext = 7 16man7ext = 7
18CC = @CC@
19CXX = @CXX@
20CPP = @CPP@
21MV = @MV@
22CP = @CP@
23LN = @LN@
24SED = @SED@
25AWK = @AWK@
26ECHO = @ECHO@
27CMP = @CMP@
28TBL = @TBL@
29PERL = @PERL@ 17PERL = @PERL@
30INSTALL = @INSTALL@ 18INSTALL = @INSTALL@
31INSTALL_PROGRAM = @INSTALL@ -m 755 19INSTALL_PROGRAM = @INSTALL@ -m 755
32INSTALL_DATA = @INSTALL@ -m 644 20INSTALL_DATA = @INSTALL@ -m 644
33CXXFLAGS = @CXXFLAGS@
34CPPFLAGS = @CPPFLAGS@ @XPM_CPPFLAGS@
35LDFLAGS = @LDFLAGS@
36DEFS = @DEFS@
37LIBS = @LIBS@
38DINCLUDE = @DINCLUDE@
39DLIB = @DLIB@
40XINC = @X_CFLAGS@ @XPM_CFLAGS@
41XLIB = @X_LIBS@ @XPM_LIBS@ -lX11 @X_EXTRA_LIBS@
42COMPILE = $(CXX) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CXXFLAGS) $(DEBUG) $(DINCLUDE) $(XINC) -I$(basedir) -I$(srcdir) -I.
43LINK = @LINKER@ $(LDFLAGS)
44 21
45VERNAME = rxvt-unicode-$(VERSION) 22VERNAME = rxvt-unicode-$(VERSION)
46 23
47srcdir = @srcdir@ 24srcdir = @srcdir@
48VPATH = @srcdir@ 25VPATH = @srcdir@
49.PATH: @srcdir@
50 26
51first_rule: all 27first_rule: all
52dummy: 28dummy:
53 29
54subdirs = src doc 30subdirs = src doc
55allsubdirs = $(subdirs)
56 31
57DIST = INSTALL README.configure configure Makefile Makefile.in ChangeLog 32RECURSIVE_TARGETS = all allbin alldoc tags clean distclean realclean install
58
59MKDIR = $(srcdir)/mkinstalldirs
60 33
61#------------------------------------------------------------------------- 34#-------------------------------------------------------------------------
62 35
63all allbin alldoc tags: 36$(RECURSIVE_TARGETS):
64 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done 37 @for I in $(subdirs); do (cd $$I; $(MAKE) $@) || exit 1; done
65 38
66realclean: clean 39distclean realclean: distclean-local
67 rm -f config.h config.status config.log libtool
68
69clean:
70 rm -f *~ config.cache
71 rm -f -r autom4te.cache
72 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done
73 40
74# 41#
75# entry points for other programs 42# entry points for other programs
76# 43#
77rxvt: 44rxvt:
78 (cd src; ${MAKE}) 45 (cd src; $(MAKE))
79
80tests:
81 (cd src/test; ${MAKE} tests)
82 46
83#------------------------------------------------------------------------- 47#-------------------------------------------------------------------------
84configure: configure.ac aclocal.m4 config.h.in 48configure: configure.ac aclocal.m4 libev/libev.m4 libptytty/ptytty.m4
85 cd $(srcdir); ./autogen.sh 49 cd $(srcdir); ./autogen.sh
86 50
87config.status: 51config.status:
88 if test -x config.status; then config.status --recheck; \ 52 if test -x config.status; then config.status --recheck; \
89 else $(SHELL) configure; fi 53 else $(SHELL) configure; fi
90 54
91config.h.in: configure.ac 55config.h.in: configure.ac aclocal.m4 libev/libev.m4 libptytty/ptytty.m4
92 cd $(srcdir); ./autogen.sh 56 cd $(srcdir); ./autogen.sh
93
94installdirs:
95 $(MKDIR) $(DESTDIR)$(bindir)
96 $(MKDIR) $(DESTDIR)$(mandir)
97
98install: installdirs
99 @for I in $(subdirs); do (cd $$I; $(MAKE) DESTDIR=$(DESTDIR) $@) || exit 1; done
100 57
101check: all 58check: all
102 echo "no tests" 59 echo "no tests"
103 60
104Makefiles: 61Makefiles:
105 $(SHELL) config.status 62 $(SHELL) config.status
106 63
107cleandir: realclean 64cleandir: realclean
108 65
109# distclean goal is for making a clean source tree, but if you have run
110# configure from a different directory, then doesn't destroy all your
111# hardly compiled and linked stuff. That's why there is always $(srcdir)/
112# In that case most of those commands do nothing, except cleaning *~
113# and cleaning source links.
114distclean: 66distclean-local:
115 rm -f *~ config.cache config.h config.log config.status libtool 67 rm -f config.cache config.h config.log config.status
116 @for I in $(allsubdirs); do (cd $$I; $(MAKE) $@) || exit 1; done
117 rm -f Makefile 68 rm -f Makefile
118 69
119distdir: 70distdir:
120 cd doc && $(MAKE) distdepend 71 cd doc && $(MAKE) distdepend
121 cd src && $(MAKE) depend 72 cd src && $(MAKE) depend
122 rm -rf $(VERNAME) 73 rm -rf $(VERNAME)
123 mkdir $(VERNAME) 74 mkdir $(VERNAME)
124 rsync -aR `cat MANIFEST` $(VERNAME)/. 75 rsync -aR --copy-unsafe-links `cat MANIFEST` $(VERNAME)/.
125 76
126tar.gz: distdir 77tar.gz: distdir
127 tar cvf - $(VERNAME) | gzip -vf9 > $(VERNAME).tar.gz 78 tar cvf - $(VERNAME) | gzip -vf9 > $(VERNAME).tar.gz
128 rm -rf $(VERNAME) 79 rm -rf $(VERNAME)
129 80

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines