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.17 by root, Thu Jan 19 12:03:06 2006 UTC vs.
Revision 1.28 by ayin, Wed Jun 13 19:36:34 2007 UTC

13man1ext = 1 13man1ext = 1
14man3dir = @mandir@/man3 14man3dir = @mandir@/man3
15man3ext = 3 15man3ext = 3
16man7dir = @mandir@/man7 16man7dir = @mandir@/man7
17man7ext = 7 17man7ext = 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@ 18PERL = @PERL@
32INSTALL = @INSTALL@ 19INSTALL = @INSTALL@
33INSTALL_PROGRAM = @INSTALL@ -m 755 20INSTALL_PROGRAM = @INSTALL@ -m 755
34INSTALL_DATA = @INSTALL@ -m 644 21INSTALL_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 22
47VERNAME = rxvt-unicode-$(VERSION) 23VERNAME = rxvt-unicode-$(VERSION)
48 24
49srcdir = @srcdir@ 25srcdir = @srcdir@
50VPATH = @srcdir@ 26VPATH = @srcdir@
51.PATH: @srcdir@
52 27
53first_rule: all 28first_rule: all
54dummy: 29dummy:
55 30
56subdirs = src doc 31subdirs = src doc
57allsubdirs = $(subdirs)
58
59DIST = INSTALL README.configure configure Makefile Makefile.in ChangeLog
60
61MKDIR = $(srcdir)/mkinstalldirs
62 32
63#------------------------------------------------------------------------- 33#-------------------------------------------------------------------------
64 34
65all allbin alldoc tags: 35all allbin alldoc tags:
66 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done 36 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done
67 37
68realclean: clean 38distclean realclean: distclean-local
69 $(RMF) config.h config.status config.log libtool
70 39
71clean: 40clean distclean realclean:
72 $(RMF) *~ config.cache
73 $(RMF) -r autom4te.cache
74 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done 41 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done
75 42
76# 43#
77# entry points for other programs 44# entry points for other programs
78# 45#
79rxvt: 46rxvt:
80 (cd src; ${MAKE}) 47 (cd src; ${MAKE})
81
82tests:
83 (cd src/test; ${MAKE} tests)
84 48
85#------------------------------------------------------------------------- 49#-------------------------------------------------------------------------
86configure: configure.ac aclocal.m4 config.h.in 50configure: configure.ac aclocal.m4 config.h.in
87 cd $(srcdir); ./autogen.sh 51 cd $(srcdir); ./autogen.sh
88 52
91 else $(SHELL) configure; fi 55 else $(SHELL) configure; fi
92 56
93config.h.in: configure.ac 57config.h.in: configure.ac
94 cd $(srcdir); ./autogen.sh 58 cd $(srcdir); ./autogen.sh
95 59
96installdirs: 60install:
97 $(MKDIR) $(DESTDIR)$(bindir)
98 $(MKDIR) $(DESTDIR)$(mandir)
99
100install: installdirs
101 @for I in $(subdirs); do (cd $$I; $(MAKE) DESTDIR=$(DESTDIR) $@) || exit 1; done 61 @for I in $(subdirs); do (cd $$I; $(MAKE) DESTDIR=$(DESTDIR) $@) || exit 1; done
102 62
103check: all 63check: all
104 echo "no tests" 64 echo "no tests"
105 65
106Makefiles: 66Makefiles:
107 $(SHELL) config.status 67 $(SHELL) config.status
108 68
109cleandir: realclean 69cleandir: realclean
110 70
111# distclean goal is for making a clean source tree, but if you have run
112# configure from a different directory, then doesn't destroy all your
113# hardly compiled and linked stuff. That's why there is always $(srcdir)/
114# In that case most of those commands do nothing, except cleaning *~
115# and cleaning source links.
116distclean: 71distclean-local:
117 (cd $(srcdir); $(RMF) *~ config.cache config.h config.log config.status libtool) 72 rm -f *~ config.cache config.h config.log config.status libtool
118 @for I in $(allsubdirs); do (cd $$I; $(MAKE) $@) || exit 1; done 73 rm -f Makefile
119 (cd $(srcdir); $(RMF) Makefile)
120 74
121distdir: 75distdir:
122 cd doc && $(MAKE) distdepend 76 cd doc && $(MAKE) distdepend
123 cd src && $(MAKE) depend 77 cd src && $(MAKE) depend
124 rm -rf $(VERNAME) 78 rm -rf $(VERNAME)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines