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.21 by ayin, Sat Jun 9 10:28:55 2007 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@
22CP = @CP@
23LN = @LN@
24SED = @SED@
25AWK = @AWK@
26ECHO = @ECHO@
27CMP = @CMP@
28TBL = @TBL@
29PERL = @PERL@ 18PERL = @PERL@
30INSTALL = @INSTALL@ 19INSTALL = @INSTALL@
31INSTALL_PROGRAM = @INSTALL@ -m 755 20INSTALL_PROGRAM = @INSTALL@ -m 755
32INSTALL_DATA = @INSTALL@ -m 644 21INSTALL_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 22
45VERNAME = rxvt-unicode-$(VERSION) 23VERNAME = rxvt-unicode-$(VERSION)
46 24
47srcdir = @srcdir@ 25srcdir = @srcdir@
48VPATH = @srcdir@ 26VPATH = @srcdir@
49.PATH: @srcdir@
50 27
51first_rule: all 28first_rule: all
52dummy: 29dummy:
53 30
54subdirs = src doc 31subdirs = src doc
55allsubdirs = $(subdirs)
56
57DIST = INSTALL README.configure configure Makefile Makefile.in ChangeLog
58
59MKDIR = $(srcdir)/mkinstalldirs
60 32
61#------------------------------------------------------------------------- 33#-------------------------------------------------------------------------
62 34
63all allbin alldoc tags: 35all allbin alldoc tags:
64 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done 36 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done
65 37
66realclean: clean 38distclean realclean: distclean-local
67 rm -f config.h config.status config.log libtool
68 39
69clean: 40clean distclean realclean:
70 rm -f *~ config.cache
71 rm -f -r autom4te.cache
72 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done 41 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done
73 42
74# 43#
75# entry points for other programs 44# entry points for other programs
76# 45#
77rxvt: 46rxvt:
78 (cd src; ${MAKE}) 47 (cd src; ${MAKE})
79
80tests:
81 (cd src/test; ${MAKE} tests)
82 48
83#------------------------------------------------------------------------- 49#-------------------------------------------------------------------------
84configure: configure.ac aclocal.m4 config.h.in 50configure: configure.ac aclocal.m4 config.h.in
85 cd $(srcdir); ./autogen.sh 51 cd $(srcdir); ./autogen.sh
86 52
89 else $(SHELL) configure; fi 55 else $(SHELL) configure; fi
90 56
91config.h.in: configure.ac 57config.h.in: configure.ac
92 cd $(srcdir); ./autogen.sh 58 cd $(srcdir); ./autogen.sh
93 59
94installdirs: 60install:
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 61 @for I in $(subdirs); do (cd $$I; $(MAKE) DESTDIR=$(DESTDIR) $@) || exit 1; done
100 62
101check: all 63check: all
102 echo "no tests" 64 echo "no tests"
103 65
104Makefiles: 66Makefiles:
105 $(SHELL) config.status 67 $(SHELL) config.status
106 68
107cleandir: realclean 69cleandir: realclean
108 70
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: 71distclean-local:
115 rm -f *~ config.cache config.h config.log config.status libtool 72 rm -f *~ config.cache config.h config.log config.status libtool
116 @for I in $(allsubdirs); do (cd $$I; $(MAKE) $@) || exit 1; done
117 rm -f Makefile 73 rm -f Makefile
118 74
119distdir: 75distdir:
120 cd doc && $(MAKE) distdepend 76 cd doc && $(MAKE) distdepend
121 cd src && $(MAKE) depend 77 cd src && $(MAKE) depend

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines