ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/Makefile.in
(Generate patch)

Comparing rxvt-unicode/src/Makefile.in (file contents):
Revision 1.51 by root, Tue Jan 17 15:17:39 2006 UTC vs.
Revision 1.54 by root, Sat Jan 21 19:02:56 2006 UTC

1
2DATE=@DATE@ 1DATE=@DATE@
3VERSION=@VERSION@ 2VERSION=@VERSION@
4RXVTNAME=@RXVTNAME@ 3RXVTNAME=@RXVTNAME@
5SHELL = /bin/sh 4SHELL = /bin/sh
6prefix = @prefix@ 5prefix = @prefix@
7exec_prefix = @exec_prefix@ 6exec_prefix = @exec_prefix@
8bindir = @bindir@ 7bindir = @bindir@
9libdir = @libdir@ 8libdir = @libdir@
10includedir = @includedir@ 9includedir = @includedir@
11man1dir = @mandir@/man1
12man1ext = 1
13man3dir = @mandir@/man3
14man3ext = 3
15man7dir = @mandir@/man7
16man7ext = 7
17CC = @CC@ 10CC = @CC@
18CXX = @CXX@ 11CXX = @CXX@
19CPP = @CPP@ 12CPP = @CPP@
20MV = @MV@ 13MV = @MV@
21RM = @RM@ 14RM = @RM@
22RMF = @RM@ -f 15RMF = @RM@ -f
23CP = @CP@ 16CP = @CP@
24LN = @LN@ 17LN = @LN@
25SED = @SED@ 18SED = @SED@
26AWK = @AWK@
27ECHO = @ECHO@ 19ECHO = @ECHO@
28CMP = @CMP@
29TBL = @TBL@
30PERL = @PERL@ 20PERL = @PERL@
31INSTALL = @INSTALL@ 21INSTALL = @INSTALL@
32INSTALL_PROGRAM = @INSTALL@ -m 755 22INSTALL_PROGRAM = @INSTALL@ -m 755
33INSTALL_DATA = @INSTALL@ -m 644 23INSTALL_DATA = @INSTALL@ -m 644
34CXXFLAGS = @CXXFLAGS@ 24CXXFLAGS = @CXXFLAGS@
41XINC = @X_CFLAGS@ @XPM_CFLAGS@ 31XINC = @X_CFLAGS@ @XPM_CFLAGS@
42XLIB = @X_LIBS@ @XPM_LIBS@ -lX11 @X_EXTRA_LIBS@ 32XLIB = @X_LIBS@ @XPM_LIBS@ -lX11 @X_EXTRA_LIBS@
43COMPILE = $(CXX) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CXXFLAGS) $(DEBUG) $(DINCLUDE) $(XINC) -I$(basedir) -I$(srcdir) -I. 33COMPILE = $(CXX) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CXXFLAGS) $(DEBUG) $(DINCLUDE) $(XINC) -I$(basedir) -I$(srcdir) -I.
44LINK = @LINKER@ $(LDFLAGS) 34LINK = @LINKER@ $(LDFLAGS)
45 35
46LINT = lint -DNARROWPROTO=1 $(XINC) -chapbxz
47
48srcdir = @srcdir@ 36srcdir = @srcdir@
49VPATH = @srcdir@ 37VPATH = @srcdir@
50.PATH: @srcdir@ 38.PATH: @srcdir@
51 39
52top_builddir = .. 40top_builddir = ..
54thisdir = src 42thisdir = src
55 43
56# for developers: the following debug options may be used 44# for developers: the following debug options may be used
57# -DDEBUG_CMD -DDEBUG_MAIN -DDEBUG_RESOURCES 45# -DDEBUG_CMD -DDEBUG_MAIN -DDEBUG_RESOURCES
58# -DDEBUG_SEARCH_PATH -DDEBUG_SIZE -DDEBUG_TTY -DDEBUG_TTYMODE 46# -DDEBUG_SEARCH_PATH -DDEBUG_SIZE -DDEBUG_TTY -DDEBUG_TTYMODE
59# -DDEBUG_KEYBOARD 47# -DDEBUG_KEYBOARD -DDEBUG_STRICT
60DEBUG=-DDEBUG_STRICT @DEBUG@ 48DEBUG=-DDEBUG_STRICT @DEBUG@
61 49
62first_rule: all 50first_rule: all
63dummy: 51dummy:
64 52
114#librxvt.la: $(LIBOBJS) 102#librxvt.la: $(LIBOBJS)
115# $(LIBTOOL) --mode=link $(LINK) -rpath $(libdir) -version-info $(LIBVERSION) $(LIBOBJS) $(LIBS) -o $@ 103# $(LIBTOOL) --mode=link $(LINK) -rpath $(libdir) -version-info $(LIBVERSION) $(LIBOBJS) $(LIBS) -o $@
116 104
117#------------------------------------------------------------------------- 105#-------------------------------------------------------------------------
118 106
119tags: 107tags: *.[Ch]
120 ctags *.h *.C 108 ctags $^
109
110TAGS: *.[Ch]
111 etags $^
121 112
122allbin: rxvt rxvtd rxvtc 113allbin: rxvt rxvtd rxvtc
123 114
124alldoc: 115alldoc:
125 116
126clean: 117clean:
127 $(RMF) rxvt rxvtc rxvtd perlxsi.c rxvtperl.C 118 $(RMF) rxvt rxvtc rxvtd perlxsi.c rxvtperl.C
128 $(RMF) *.o *.lo .libs/* librxvt.la tmpproto *.tmp 119 $(RMF) *.o *.lo .libs/* librxvt.la tmpproto *.tmp
129 120
130realclean: clean 121realclean: clean
131 $(RMF) tags librxvt.h 122 $(RMF) tags TAGS librxvt.h
132 123
133cleandir: realclean 124cleandir: realclean
134 125
135distclean: realclean 126distclean: realclean
136 (cd $(srcdir); $(RMF) Makefile) 127 (cd $(srcdir); $(RMF) Makefile)
150 141
151perlxsi.c: Makefile 142perlxsi.c: Makefile
152 $(PERL) -MExtUtils::Embed -e xsinit -- -std urxvt 143 $(PERL) -MExtUtils::Embed -e xsinit -- -std urxvt
153 144
154rxvtperl.C: rxvtperl.xs typemap 145rxvtperl.C: rxvtperl.xs typemap
155 $(PERL) @PERLPRIVLIBEXP@/ExtUtils/xsubpp -C++ -typemap @PERLPRIVLIBEXP@/ExtUtils/typemap -typemap typemap -prototypes $< >$@ 146 $(PERL) @PERLPRIVLIBEXP@/ExtUtils/xsubpp -C++ -typemap @PERLPRIVLIBEXP@/ExtUtils/typemap -typemap typemap -prototypes rxvtperl.xs >$@
156 147
157rxvtperl.o: rxvtperl.C perlxsi.c 148rxvtperl.o: rxvtperl.C perlxsi.c
158 $(COMPILE) @PERLFLAGS@ -DLIBDIR="\"$(libdir)/urxvt\"" -c $< 149 $(COMPILE) @PERLFLAGS@ -DLIBDIR="\"$(libdir)/urxvt\"" -c $<
159 150
160depend: 151depend:
218rxvtd.o: salloc.h rxvtperl.h hookinc.h rsinc.h rxvtdaemon.h fdpass.h 209rxvtd.o: salloc.h rxvtperl.h hookinc.h rsinc.h rxvtdaemon.h fdpass.h
219rxvtdaemon.o: rxvtdaemon.h rxvtutil.h 210rxvtdaemon.o: rxvtdaemon.h rxvtutil.h
220rxvtfont.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h 211rxvtfont.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
221rxvtfont.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 212rxvtfont.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
222rxvtfont.o: salloc.h rxvtperl.h hookinc.h rsinc.h table/linedraw.h 213rxvtfont.o: salloc.h rxvtperl.h hookinc.h rsinc.h table/linedraw.h
223rxvtperl.o: ../config.h iom.h iom_conf.h rxvtutil.h callback.h rxvt.h
224rxvtperl.o: rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h
225rxvtperl.o: salloc.h rxvtperl.h hookinc.h rsinc.h keyboard.h perlxsi.c
226rxvttoolkit.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h 214rxvttoolkit.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
227rxvttoolkit.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h 215rxvttoolkit.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
228rxvttoolkit.o: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h 216rxvttoolkit.o: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
229rxvtutil.o: rxvtutil.h 217rxvtutil.o: rxvtutil.h
230salloc.o: salloc.h 218salloc.o: salloc.h
308rxvtd.lo: salloc.h rxvtperl.h hookinc.h rsinc.h rxvtdaemon.h fdpass.h 296rxvtd.lo: salloc.h rxvtperl.h hookinc.h rsinc.h rxvtdaemon.h fdpass.h
309rxvtdaemon.lo: rxvtdaemon.h rxvtutil.h 297rxvtdaemon.lo: rxvtdaemon.h rxvtutil.h
310rxvtfont.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h 298rxvtfont.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
311rxvtfont.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 299rxvtfont.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
312rxvtfont.lo: salloc.h rxvtperl.h hookinc.h rsinc.h table/linedraw.h 300rxvtfont.lo: salloc.h rxvtperl.h hookinc.h rsinc.h table/linedraw.h
313rxvtperl.lo: ../config.h iom.h iom_conf.h rxvtutil.h callback.h rxvt.h
314rxvtperl.lo: rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h
315rxvtperl.lo: salloc.h rxvtperl.h hookinc.h rsinc.h keyboard.h perlxsi.c
316rxvttoolkit.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h 301rxvttoolkit.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
317rxvttoolkit.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h 302rxvttoolkit.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
318rxvttoolkit.lo: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h 303rxvttoolkit.lo: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
319rxvtutil.lo: rxvtutil.h 304rxvtutil.lo: rxvtutil.h
320salloc.lo: salloc.h 305salloc.lo: salloc.h

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines