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.22 by ayin, Tue Jun 12 23:36:23 2007 UTC vs.
Revision 1.29 by ayin, Mon Nov 12 18:10:47 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 32
57DIST = INSTALL README.configure configure Makefile Makefile.in ChangeLog 33RECURSIVE_TARGETS = all allbin alldoc tags clean distclean realclean install
58
59MKDIR = $(srcdir)/mkinstalldirs
60 34
61#------------------------------------------------------------------------- 35#-------------------------------------------------------------------------
62 36
63all allbin alldoc tags: 37$(RECURSIVE_TARGETS):
64 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done 38 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done
65 39
66distclean realclean: distclean-local 40distclean realclean: distclean-local
67
68clean distclean realclean:
69 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done
70 41
71# 42#
72# entry points for other programs 43# entry points for other programs
73# 44#
74rxvt: 45rxvt:
75 (cd src; ${MAKE}) 46 (cd src; ${MAKE})
76
77tests:
78 (cd src/test; ${MAKE} tests)
79 47
80#------------------------------------------------------------------------- 48#-------------------------------------------------------------------------
81configure: configure.ac aclocal.m4 config.h.in 49configure: configure.ac aclocal.m4 config.h.in
82 cd $(srcdir); ./autogen.sh 50 cd $(srcdir); ./autogen.sh
83 51
86 else $(SHELL) configure; fi 54 else $(SHELL) configure; fi
87 55
88config.h.in: configure.ac 56config.h.in: configure.ac
89 cd $(srcdir); ./autogen.sh 57 cd $(srcdir); ./autogen.sh
90 58
91installdirs:
92 $(MKDIR) $(DESTDIR)$(bindir)
93 $(MKDIR) $(DESTDIR)$(mandir)
94
95install: installdirs
96 @for I in $(subdirs); do (cd $$I; $(MAKE) DESTDIR=$(DESTDIR) $@) || exit 1; done
97
98check: all 59check: all
99 echo "no tests" 60 echo "no tests"
100 61
101Makefiles: 62Makefiles:
102 $(SHELL) config.status 63 $(SHELL) config.status
103 64
104cleandir: realclean 65cleandir: realclean
105 66
106# distclean goal is for making a clean source tree, but if you have run
107# configure from a different directory, then doesn't destroy all your
108# hardly compiled and linked stuff. That's why there is always $(srcdir)/
109# In that case most of those commands do nothing, except cleaning *~
110# and cleaning source links.
111distclean-local: 67distclean-local:
112 rm -f *~ config.cache config.h config.log config.status libtool 68 rm -f *~ config.cache config.h config.log config.status libtool
113 rm -f Makefile 69 rm -f Makefile
114 70
115distdir: 71distdir:

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines