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

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines