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.14 by ayin, Mon Jan 16 16:38:20 2006 UTC vs.
Revision 1.24 by ayin, Wed Jun 13 10:39:09 2007 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines