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.4 by pcg, Thu Dec 18 07:41:39 2003 UTC vs.
Revision 1.24 by ayin, Wed Jun 13 10:39:09 2007 UTC

1# ./Makefile.in -*- Makefile -*- 1# ./Makefile.in -*- Makefile -*-
2# $Id: Makefile.in,v 1.4 2003/12/18 07:41:39 pcg Exp $ 2
3@MCOMMON@ 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)
44
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 src/graphics src/test 53subdirs = src doc
13allsubdirs = W11 $(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/Make.common.in 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 @if test x@host_os@ = xcygwin; then (cd W11; ${MAKE} $@) || exit 1; fi
29 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done 60 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done
30 61
31realclean: clean 62distclean realclean: distclean-local
32 $(RMF) config.h config.status config.log libtool
33 63
34clean: 64clean distclean realclean:
35 $(RMF) *~ config.cache
36 $(RMF) -r autom4te.cache
37 @if test x@host_os@ = xcygwin; then (cd W11; ${MAKE} $@) || exit 1; fi
38 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done 65 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done
39 66
40# 67#
41# entry points for other programs 68# entry points for other programs
42# 69#
43rxvt: 70rxvt:
44 (cd src; ${MAKE}) 71 (cd src; ${MAKE})
45 72
46clock:
47 (cd rclock; ${MAKE})
48
49graphics qplot:
50 (cd src/graphics; ${MAKE} qplot)
51
52tests:
53 (cd src/test; ${MAKE} tests)
54
55#------------------------------------------------------------------------- 73#-------------------------------------------------------------------------
56configure: autoconf/configure.in autoconf/aclocal.m4 autoconf/config.h.in 74configure: configure.ac aclocal.m4 config.h.in
57 cd $(srcdir); 75 cd $(srcdir); ./autogen.sh
58 ./.prebuild
59 76
60config.status: 77config.status:
61 if test -x config.status; then config.status --recheck; \ 78 if test -x config.status; then config.status --recheck; \
62 else $(SHELL) configure; fi 79 else $(SHELL) configure; fi
63 80
64autoconf/config.h.in: autoconf/configure.in 81config.h.in: configure.ac
65 cd $(srcdir); 82 cd $(srcdir); ./autogen.sh
66 ./.prebuild
67 83
68installdirs: 84installdirs:
69 $(MKDIR) $(DESTDIR)$(bindir) 85 $(MKDIR) $(DESTDIR)$(bindir)
70 $(MKDIR) $(DESTDIR)$(mandir) 86 $(MKDIR) $(DESTDIR)$(mandir)
71 87
72install: installdirs 88install: installdirs
73 @if test x@host_os@ = xcygwin; then (cd W11; ${MAKE} $@) || exit 1; fi
74 @for I in $(subdirs); do (cd $$I; $(MAKE) DESTDIR=$(DESTDIR) $@) || exit 1; done 89 @for I in $(subdirs); do (cd $$I; $(MAKE) DESTDIR=$(DESTDIR) $@) || exit 1; done
90
91check: all
92 echo "no tests"
75 93
76Makefiles: 94Makefiles:
77 $(SHELL) config.status 95 $(SHELL) config.status
78 96
79cleandir: realclean 97cleandir: realclean
80 98
81# distclean goal is for making a clean source tree, but if you have run
82# configure from a different directory, then doesn't destroy all your
83# hardly compiled and linked stuff. That's why there is always $(srcdir)/
84# In that case most of those commands do nothing, except cleaning *~
85# and cleaning source links.
86distclean: 99distclean-local:
87 (cd $(srcdir); $(RMF) *~ config.cache config.h config.log config.status libtool) 100 rm -f *~ config.cache config.h config.log config.status libtool
88 @for I in $(allsubdirs); do (cd $$I; $(MAKE) $@) || exit 1; done 101 rm -f Makefile
89 (cd $(srcdir); $(RMF) Makefile autoconf/Make.common)
90 102
91distdir: 103distdir:
104 cd doc && $(MAKE) distdepend
105 cd src && $(MAKE) depend
92 rm -rf $(VERNAME) 106 rm -rf $(VERNAME)
93 mkdir $(VERNAME) 107 mkdir $(VERNAME)
94 rsync -aR `cat MANIFEST` $(VERNAME)/. 108 rsync -aR `cat MANIFEST` $(VERNAME)/.
95 109
96tar.gz: distdir 110tar.gz: distdir

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines