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.14 by ayin, Mon Jan 16 16:38:20 2006 UTC vs.
Revision 1.17 by root, Thu Jan 19 12:03:06 2006 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@
22RM = @RM@
23RMF = @RM@ -f
24CP = @CP@
25LN = @LN@
26SED = @SED@
27AWK = @AWK@
28ECHO = @ECHO@
29CMP = @CMP@
30TBL = @TBL@
31PERL = @PERL@
32INSTALL = @INSTALL@
33INSTALL_PROGRAM = @INSTALL@ -m 755
34INSTALL_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)
2 46
3VERNAME = rxvt-unicode-$(VERSION) 47VERNAME = rxvt-unicode-$(VERSION)
4 48
5srcdir = @srcdir@ 49srcdir = @srcdir@
6VPATH = @srcdir@ 50VPATH = @srcdir@
12subdirs = src doc 56subdirs = src doc
13allsubdirs = $(subdirs) 57allsubdirs = $(subdirs)
14 58
15DIST = INSTALL README.configure configure Makefile Makefile.in ChangeLog 59DIST = INSTALL README.configure configure Makefile Makefile.in ChangeLog
16 60
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 61MKDIR = $(srcdir)/mkinstalldirs
24 62
25#------------------------------------------------------------------------- 63#-------------------------------------------------------------------------
26 64
27all allbin alldoc tags: 65all allbin alldoc tags:
28 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done 66 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done
43 81
44tests: 82tests:
45 (cd src/test; ${MAKE} tests) 83 (cd src/test; ${MAKE} tests)
46 84
47#------------------------------------------------------------------------- 85#-------------------------------------------------------------------------
48configure: autoconf/configure.in autoconf/aclocal.m4 autoconf/config.h.in 86configure: configure.ac aclocal.m4 config.h.in
49 cd $(srcdir); 87 cd $(srcdir); ./autogen.sh
50 ./.prebuild
51 88
52config.status: 89config.status:
53 if test -x config.status; then config.status --recheck; \ 90 if test -x config.status; then config.status --recheck; \
54 else $(SHELL) configure; fi 91 else $(SHELL) configure; fi
55 92
56autoconf/config.h.in: autoconf/configure.in 93config.h.in: configure.ac
57 cd $(srcdir); 94 cd $(srcdir); ./autogen.sh
58 ./.prebuild
59 95
60installdirs: 96installdirs:
61 $(MKDIR) $(DESTDIR)$(bindir) 97 $(MKDIR) $(DESTDIR)$(bindir)
62 $(MKDIR) $(DESTDIR)$(mandir) 98 $(MKDIR) $(DESTDIR)$(mandir)
63 99

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines