annotate src/Makefile.in.in @ 149:538048ae2ab8 r20-3b1

Import from CVS: tag r20-3b1
author cvs
date Mon, 13 Aug 2007 09:36:16 +0200
parents 585fb297b004
children 59463afc5666
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* Makefile for src subdirectory in XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 Copyright (C) 1985, 1987, 1988, 1993, 1994 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 Copyright (C) 1994, 1995 Board of Trustees, University of Illinois
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 under the terms of the GNU General Public License as published by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 Free Software Foundation; either version 2, or (at your option) any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 XEmacs is distributed in the hope that it will be useful, but WITHOUT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 along with XEmacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 /* Synched up with: Not synched with FSF. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 @SET_MAKE@
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25
18
d95e72db5c07 Import from CVS: tag r19-15b92
cvs
parents: 16
diff changeset
26 /* Some people use these in paths they define. We do not want their paths
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 getting changed on them. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 #undef sparc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 #undef sun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 #undef unix
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 #undef sgi
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 #undef NeXT
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
33 #undef i386
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
35 /* For performance and consistency, no built-in rules */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
36 .SUFFIXES:
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
37 .SUFFIXES: .c .o .i .h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 dot = .
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 /* On Xenix and the IBM RS6000, double-dot gets screwed up. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 lispdir = ${srcdir}/$(dot)$(dot)/lisp/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 libsrc = $(dot)$(dot)/lib-src/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 etcdir = $(dot)$(dot)/etc/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 /* Here are the things that we expect ../configure to edit. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 srcdir=@srcdir@
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 CC=@CC@
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 CPP=@CPP@
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 CFLAGS=@CFLAGS@
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
49 CPPFLAGS=@CPPFLAGS@
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
50 LDFLAGS=@LDFLAGS@
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
51
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
52 c_switch_general=@c_switch_general@
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
53 c_switch_window_system=@c_switch_window_system@
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
54 c_switch_all=@c_switch_all@
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
55 ld_switch_general=@ld_switch_general@
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
56 ld_switch_window_system=@ld_switch_window_system@
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
57 ld_switch_all=@ld_switch_all@
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
58 ld_libs_general=@ld_libs_general@
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
59 ld_libs_window_system=@ld_libs_window_system@
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
60 ld_libs_all=@ld_libs_all@
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
61
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
62 extra_objs=@extra_objs@
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 LN_S=@LN_S@
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 /* just to be sure the sh is used */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 SHELL=/bin/sh
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 #define NO_SHORTNAMES
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 #define NOT_C_CODE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 #include "config.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 /* With the traditional VPATH setting, it is not possible to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 simultaneously compile in-place and in another directory. The
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 mistaken definition is that *all* dependencies are searched for in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 the VPATH directory, rather than just the dependencies that are not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 themselves targets. Thus, if there is an up-to-date .o file in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 in-place location, it will not get recompiled in the not-in-place
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 location.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79
18
d95e72db5c07 Import from CVS: tag r19-15b92
cvs
parents: 16
diff changeset
80 The GNU Make "vpath" directive continues this tradition, but at
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 least lets you restrict the classes of files that it applies to.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 This allows us to kludge around the problem. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 #ifdef USE_GNU_MAKE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 vpath %.c @srcdir@
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 vpath %.h @srcdir@
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 /* now list files that should NOT be searched in the srcdir.
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
87 This includes any .c or .h built from something else
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 (e.g. a .in file). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 vpath config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 vpath paths.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 vpath Emacs.ad.h
108
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 106
diff changeset
92 vpath puresize_adjust.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 VPATH=@srcdir@
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 /* On some machines #define register is done in config;
18
d95e72db5c07 Import from CVS: tag r19-15b92
cvs
parents: 16
diff changeset
98 do not let it interfere with this file. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 #undef register
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 /* On some systems we may not be able to use the system make command. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 #ifdef MAKE_COMMAND
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 MAKE = MAKE_COMMAND
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
106 /* Some machines do not have the standard C libraries in the usual place. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 #ifndef ORDINARY_LINK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 #ifndef LIB_STANDARD
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 #define LIB_STANDARD -lc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 #ifndef LIB_STANDARD
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 #define LIB_STANDARD
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 /* Unless inhibited or changed, use -lg to link for debugging. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 #ifndef LIBS_DEBUG
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 #define LIBS_DEBUG -lg
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 #ifndef LD_SWITCH_CALL_SHARED
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 #define LD_SWITCH_CALL_SHARED
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 #endif /* define a call_shared switch */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 #ifndef LD_SWITCH_SHARED
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 #define LD_SWITCH_SHARED -c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 #endif /* define a shared switch */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 #ifndef ORDINARY_LINK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 #ifndef CRT0_COMPILE
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
133 #define CRT0_COMPILE $(CC) -c $(cflags) C_SWITCH_ASM
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 #ifndef START_FILES
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 #ifdef NO_REMAP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 #ifdef COFF_ENCAPSULATE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 #define START_FILES pre-crt0.o /usr/local/lib/gcc-crt0.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 #else /* ! defined (COFF_ENCAPSULATE) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 #define START_FILES pre-crt0.o /lib/crt0.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 #endif /* ! defined (COFF_ENCAPSULATE) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 #else /* ! defined (NO_REMAP) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 #define START_FILES ecrt0.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 #endif /* ! defined (NO_REMAP) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 #endif /* START_FILES */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 STARTFILES = START_FILES
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 #else /* ORDINARY_LINK */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 /* config.h might want to force START_FILES anyway */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 #ifdef START_FILES
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 STARTFILES = START_FILES
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 STARTFILES =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 #endif /* START_FILES */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 #endif /* not ORDINARY_LINK */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 /* Unless inhibited or changed, use -g to compile for debugging. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 #ifndef C_DEBUG_SWITCH
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 #define C_DEBUG_SWITCH -g
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 /* If user wants to optimize, this is how. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 #ifndef C_OPTIMIZE_SWITCH
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 #define C_OPTIMIZE_SWITCH -O
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
170 /* cc switches needed to make the "asm" keyword work.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 Nothing special needed on most machines. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 #ifndef C_SWITCH_ASM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 #define C_SWITCH_ASM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
176 PURIFY_PROG=purify
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
177 PURIFY_FLAGS=-chain-length=16 -ignore-signals=SIGPOLL -log-file=puremacs.log \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
178 -messages=batch -show-directory=yes -windows=yes \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
179 -cache-dir=. -always-use-cache-dir=yes
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
180 PURECOV_PROG=purecov
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
181 #ifdef QUANTIFY
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
182 quantify_prog = quantify
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
183 quantify_flags = -windows=no -record-data=no
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
184 quantify_includes = -I/local/include
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
185 quantify_libs = /local/lib/quantify_stubs.a
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
186 #endif /* QUANTIFY */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 #ifdef SHORTNAMES
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 SHORT= shortnames
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 #ifdef HAVE_NATIVE_SOUND
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
193 sound_cflags=@sound_cflags@
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
196 LWLIB_SRCDIR = ${srcdir}/$(dot)$(dot)/lwlib
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
197
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
198 #ifdef HAVE_X_WINDOWS
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
199 LWLIB_BUILDDIR = $(dot)$(dot)/lwlib
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
201 LWLIB_LDFLAGS = -L$(LWLIB_BUILDDIR)
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
202 LWLIB_LIBS = -llw
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
203 LWLIB_CPPFLAGS = -I$(LWLIB_SRCDIR)
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
204 LWLIB_DEPS = $(LWLIB_BUILDDIR)/liblw.a
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
206 x_objs = balloon_help.o balloon-x.o console-x.o device-x.o event-Xt.o frame-x.o \
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
207 glyphs-x.o objects-x.o redisplay-x.o xgccache.o xselect.o
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
208
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
209 #ifdef AIX4
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
210 LIBI18N = -li18n
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
211 #endif /* AIX4 */
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
212
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
213 X11_libs= $(LIBX11_LIBS) $(libx11_intl) $(LIBI18N)
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
214 #endif /* HAVE_X_WINDOWS */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 /* -Demacs is needed to make some files produce the correct version
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
217 for use in Emacs. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
219 src_cppflags=-Demacs -I${srcdir} $(LWLIB_CPPFLAGS) $(CPPFLAGS)
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
220 cppflags = -I. $(c_switch_all) $(src_cppflags)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
222 cflags= $(CFLAGS) $(cppflags)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
224 ldflags = $(ld_switch_all) -L. $(no_gnu_linker) $(LWLIB_LDFLAGS)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 .c.o:
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
227 $(CC) -c $(cflags) $<
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
229 /* Create preprocessor output (debugging purposes only) */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
230 .c.i:
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
231 $(CC) -P $(cppflags) $<
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 #ifndef ORDINARY_LINK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 /* Fix linking if compiled with GCC. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 #ifdef __GNUC__
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 #if __GNUC__ > 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 /* Versions of GCC >= 2.0 put their library, libgcc.a, in obscure
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 places that are difficult to figure out at make time. Fortunately,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 these same versions allow you to pass arbitrary flags on to the
18
d95e72db5c07 Import from CVS: tag r19-15b92
cvs
parents: 16
diff changeset
242 linker, so there is no reason not to use it as a linker.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
244 Well, it is not quite perfect. The "-nostdlib" option keeps GCC
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
245 from searching for libraries in its internal directories, so we
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
246 have to ask GCC explicitly where to find libgcc.a. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 #ifndef LINKER
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 #define LINKER $(CC) -nostdlib
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 /* GCC passes any argument prefixed with -Xlinker directly to the
18
d95e72db5c07 Import from CVS: tag r19-15b92
cvs
parents: 16
diff changeset
251 linker. See prefix-args.c for an explanation of why we do not do
d95e72db5c07 Import from CVS: tag r19-15b92
cvs
parents: 16
diff changeset
252 this with the shell "for" construct.
d95e72db5c07 Import from CVS: tag r19-15b92
cvs
parents: 16
diff changeset
253 Note that some people do not have "." in their paths, so we must
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 use ./prefix-args. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 #define YMF_PASS_LDFLAGS(flags) `./prefix-args -Xlinker flags`
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 #endif /* LINKER */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 #ifndef LIB_GCC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 /* Ask GCC where to find libgcc.a. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 #define LIB_GCC `$(CC) -print-libgcc-file-name`
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 #endif /* LIB_GCC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 GNULIB_VAR = LIB_GCC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 #else /* __GNUC__ < 2 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 #ifndef LIB_GCC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 #define LIB_GCC /usr/local/lib/gcc-gnulib
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 #endif /* LIB_GCC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 GNULIB_VAR = `if [ -f LIB_GCC ] ; then echo LIB_GCC; else echo; fi`
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 #endif /* __GNUC__ < 2 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 #else /* ! defined (__GNUC__) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 GNULIB_VAR =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 #endif /* ! defined (__GNUC__) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 GNULIB_VAR =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 #endif /* not ORDINARY_LINK */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
280 /* A macro which other sections of the makefile can redefine to munge the
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
281 flags before they are passed to LD. This is helpful if you have
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
282 redefined LD to something odd, like "gcc". */
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
283 #ifndef YMF_PASS_LDFLAGS
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
284 #define YMF_PASS_LDFLAGS(flags) flags
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
285 #endif
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
286
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 /* Specify address for ld to start loading at,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 if requested by configuration. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 #ifdef LD_TEXT_START_ADDR
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 STARTFLAGS = -T LD_TEXT_START_ADDR -e __start
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 STARTFLAGS =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 #ifdef ORDINARY_LINK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 LD = $(CC) $(CFLAGS)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 #ifdef COFF_ENCAPSULATE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 LD=$(CC) -nostdlib
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 #else /* not ORDINARY_LINK */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 #ifdef LINKER
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 LD=LINKER
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 #else /* ! defined (LINKER) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 LD=ld
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 #endif /* ! defined (LINKER) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 #endif /* ! defined (COFF_ENCAPSULATE) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 #endif /* not ORDINARY_LINK */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 /* Allow config.h to specify a replacement file for unexec.c. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 #ifndef UNEXEC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 #define UNEXEC unexec.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 #ifndef UNEXEC_SRC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 #define UNEXEC_SRC unexec.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 #ifdef ENERGIZE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 # ifdef EMACS_BTL
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
319 BTL_dir=$(srcdir)/../btl
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
320 BTL_objs = cadillac-btl.o cadillac-btl-process.o cadillac-btl-asm.o cadillac-btl-emacs.o
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
321 # endif /* EMACS_BTL */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 # if defined(FREE_CHECKING) || defined(DEBUG_INPUT_BLOCKING) || defined(DEBUG_GCPRO)
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
323 freecheck_objs = free-hook.o
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
324 # endif /* FREE */
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
325 energize_objs = energize.o $(freecheck_objs)
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
326 #endif /* ENERGIZE */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 #ifdef MOCKLISP_SUPPORT
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
329 mocklisp_objs = mocklisp.o
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 #ifdef HAVE_TTY
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
333 tty_objs = console-tty.o device-tty.o event-tty.o frame-tty.o \
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 objects-tty.o redisplay-tty.o cm.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 #ifdef HAVE_UNIXOID_EVENT_LOOP
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
338 event_unixoid_objs = event-unixoid.o
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 /* lastfile must follow all files whose initialized data areas should
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
342 be dumped as pure by dump-emacs. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 /* NOTE: The last line cannot be all macros, because make will barf
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 if they all come out null. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
347 objs = abbrev.o alloc.o blocktype.o buffer.o bytecode.o \
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
348 callint.o callproc.o casefiddle.o casetab.o chartab.o \
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
349 cmdloop.o cmds.o console.o console-stream.o data.o \
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
350 device.o dired.o \
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
351 doc.o doprnt.o dynarr.o editfns.o elhash.o emacs.o \
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
352 $(energize_objs) eval.o events.o $(extra_objs) \
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
353 event-stream.o $(event_unixoid_objs) extents.o faces.o \
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
354 fileio.o filelock.o filemode.o floatfns.o fns.o font-lock.o \
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
355 frame.o general.o getloadavg.o glyphs.o \
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
356 $(gui_objs) hash.o indent.o inline.o insdel.o intl.o \
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
357 keymap.o $(RTC_patch_objs) lread.o lstream.o macros.o \
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
358 marker.o md5.o minibuf.o $(mocklisp_objs) \
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 objects.o opaque.o \
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
360 print.o process.o profile.o pure.o rangetab.o \
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
361 redisplay.o redisplay-output.o regex.o \
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
362 search.o signal.o sound.o \
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
363 specifier.o strftime.o symbols.o syntax.o \
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
364 sysdep.o $(tty_objs) undo.o \
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
365 UNEXEC $(x_objs) window.o
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
367 /* The following is being done in configure.in now - mrb */
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
368 #undef LIBS_TERMCAP
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
369 #define LIBS_TERMCAP
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
370 #if 0
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 #ifdef HAVE_TTY
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 # ifdef HAVE_NCURSES
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 /* If your machine needs -ltermcap, define LIBS_TERMCAP to include
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 -lncurses -ltermcap in your s or m file (conditionalized on
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 HAVE_NCURSES). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 # ifndef LIBS_TERMCAP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 # define LIBS_TERMCAP -lncurses
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 # endif /* LIBS_TERMCAP */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 termcapobjs = terminfo.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 # elif defined (TERMINFO)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 /* Used to be -ltermcap here. If your machine needs that,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 define LIBS_TERMCAP in the m/<machine>.h file. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 # ifndef LIBS_TERMCAP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 # define LIBS_TERMCAP -lcurses
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 # endif /* LIBS_TERMCAP */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 termcapobjs = terminfo.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 # else /* ! defined (TERMINFO) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 # ifndef LIBS_TERMCAP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 # define LIBS_TERMCAP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 termcapobjs = termcap.o tparam.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 # else /* LIBS_TERMCAP */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 termcapobjs = tparam.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 # endif /* LIBS_TERMCAP */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 # endif /* ! defined (TERMINFO) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 #else /* !HAVE_TTY */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 # undef LIBS_TERMCAP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 # define LIBS_TERMCAP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 #endif /* !HAVE_TTY */
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
399 #endif /* 0 */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 #ifdef REL_ALLOC
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
402 rallocdocsrc = ralloc.c
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 rallocobjs = ralloc.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 #ifndef SYSTEM_MALLOC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 # ifdef GNU_MALLOC /* New GNU malloc */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 # ifdef ERROR_CHECK_MALLOC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409 mallocobjs = gmalloc.o free-hook.o vm-limit.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 mallocdocsrc = free-hook.c
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
411 # else /* New GNU malloc, sans error checking */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 mallocobjs = gmalloc.o vm-limit.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 mallocdocsrc =
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
414 # endif /* ERROR_CHECK_MALLOC */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 # else /* Old GNU malloc */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 mallocobjs = malloc.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 mallocdocsrc =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 # endif /* Old GNU malloc */
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
419 #else /* SYSTEM_MALLOC */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 mallocobjs =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 mallocdocsrc =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422 #endif /* SYSTEM_MALLOC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 #ifdef HAVE_X_WINDOWS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 # ifdef EXTERNAL_WIDGET
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
427 external_widget_objs = ExternalShell.o extw-Xt-nonshared.o extw-Xlib-nonshared.o
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 /* Now we try to figure out how to link a shared library.
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
430 If we cannot figure it out, leave EXTW_LINK undefined and a shared
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 library will not be created. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433 # ifdef USE_GCC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434 # ifdef USG5
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 # define EXTW_LINK(objs, output) $(CC) -shared objs -Xlinker -z -Xlinker text -o output
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
436 /* I cannot figure out how to do shared a.out libraries, so just punt. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 # elif !defined (LINUX) || defined (__ELF__)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438 # define EXTW_LINK(objs, output) $(CC) -shared objs -o output
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 # endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 # elif defined (USG5)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 # if defined (IRIX)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 # define EXTW_LINK(objs, output) $(LD) -shared -g -check_registry ${TOOLROOT}/usr/lib/so_locations objs -o output
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 # else /* not IRIX */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 # define EXTW_LINK(objs, output) $(CC) -G objs -z text -o output
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 # endif /* not IRIX */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 # else /* not USG5 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 # if defined (DEC_ALPHA) && defined (OSF1)
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
448 # define EXTW_LINK(objs, output) $(LD) $(ldflags) LD_SWITCH_SHARED -d objs -o output $(LIBES)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 # else /* !(DEC_ALPHA && OSF1) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450 # define EXTW_LINK(objs, output) $(LD) -dc objs -assert pure-text -o output
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 # endif /* !(DEC_ALPHA && OSF1) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452 # endif /* not USG5 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 # ifdef LWLIB_USES_MOTIF
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 # ifdef EXTW_LINK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 # define MOTIF_OTHER_FILES libextcli_Xm.a libextcli_Xm.so.1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 # else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 # define MOTIF_OTHER_FILES libextcli_Xm.a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459 # endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460 # else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 # define MOTIF_OTHER_FILES
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464 # ifdef EXTW_LINK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465 # define OTHER_FILES MOTIF_OTHER_FILES \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 libextcli_Xt.a libextcli_Xt.so.1 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467 libextcli_Xlib.a libextcli_Xlib.so.1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 # else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469 # define OTHER_FILES MOTIF_OTHER_FILES \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 libextcli_Xt.a libextcli_Xlib.a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471 # endif
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
472 # endif /* EXTERNAL_WIDGET */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
474 X11_objs = EmacsFrame.o EmacsShell.o TopLevelEmacsShell.o TransientEmacsShell.o EmacsManager.o $(external_widget_objs)
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
475 #endif /* HAVE_X_WINDOWS */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 /* define otherobjs as list of object files that make-docfile
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 should not be told about. */
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
479 otherobjs = $(termcapobjs) $(BTL_objs) lastfile.o $(mallocobjs) $(rallocobjs) $(X11_objs)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 #ifdef LISP_FLOAT_TYPE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482 #define FLOAT_LISP ${lispdir}prim/float-sup.elc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484 #define FLOAT_LISP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487 #ifdef HAVE_X_WINDOWS
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
488 /* lisp files preloaded if compiled with support for X Windows */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 # ifdef HAVE_TOOLBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490 # define X11_TOOLBAR_LISP ${lispdir}x11/x-toolbar.elc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491 # else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 # define X11_TOOLBAR_LISP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493 # endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 # ifdef HAVE_MENUBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495 # define X11_MENUBAR_LISP ${lispdir}x11/x-menubar.elc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496 # else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 # define X11_MENUBAR_LISP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498 # endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499 # ifdef HAVE_SCROLLBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500 # define X11_SCROLLBAR_LISP ${lispdir}x11/x-scrollbar.elc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501 # else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502 # define X11_SCROLLBAR_LISP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503 # endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 #define X11_LISP X11_MENUBAR_LISP \
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
505 ${lispdir}x11/x-faces.elc \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
506 ${lispdir}x11/x-iso8859-1.elc ${lispdir}x11/x-mouse.elc \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
507 ${lispdir}x11/x-select.elc X11_SCROLLBAR_LISP \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
508 X11_TOOLBAR_LISP ${lispdir}x11/x-misc.elc \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
509 ${lispdir}x11/x-init.elc
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511 #define X11_LISP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 #ifdef HAVE_TTY
120
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 118
diff changeset
515 /* lisp files preloaded if compiled with support for tty */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516 #define TTY_LISP ${lispdir}term/tty-init.elc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 #define TTY_LISP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
521 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
522 #ifdef HAVE_X_WINDOWS
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
523 # define MULE_X11_LISP ${lispdir}mule/mule-x-init.elc
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
524 #else
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
525 # define MULE_X11_LISP
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
526 #endif
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
527 #define MULE_LISP \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
528 ${lispdir}mule/mule-load.elc ${lispdir}mule/mule-coding.elc \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
529 ${lispdir}mule/mule-charset.elc ${lispdir}mule/mule-files.elc \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
530 ${lispdir}mule/mule-category.elc ${lispdir}mule/mule-misc.elc \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
531 ${lispdir}mule/mule-ccl.elc ${lispdir}mule/mule-init.elc \
110
fe104dbd9147 Import from CVS: tag r20-1b7
cvs
parents: 108
diff changeset
532 ${lispdir}mule/kinsoku.elc \
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
533 MULE_X11_LISP \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
534 ${lispdir}mule/arabic-hooks.elc \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
535 ${lispdir}mule/chinese-hooks.elc \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
536 ${lispdir}mule/cyrillic-hooks.elc \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
537 ${lispdir}mule/ethiopic-hooks.elc \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
538 ${lispdir}mule/european-hooks.elc \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
539 ${lispdir}mule/greek-hooks.elc \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
540 ${lispdir}mule/hebrew-hooks.elc \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
541 ${lispdir}mule/ipa-hooks.elc \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
542 ${lispdir}mule/japanese-hooks.elc \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
543 ${lispdir}mule/korean-hooks.elc \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
544 ${lispdir}mule/thai-hooks.elc \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
545 ${lispdir}mule/vietnamese-hooks-1.elc \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
546 ${lispdir}mule/vietnamese-hooks-2.elc
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
547
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
548 #define NOMULE_LISP
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
549 #else
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
550 #define MULE_LISP
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
551 #define NOMULE_LISP ${lispdir}prim/files-nomule.elc
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
552 #endif
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
553
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554 #ifdef ENERGIZE
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
555 /* Lisp files preloaded if compiled with support for Energize */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
556 #define ENERGIZE_LISP \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
557 ${lispdir}comint/gdb.elc \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
558 ${lispdir}comint/comint.elc ${lispdir}comint/shell.elc \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
559 ${lispdir}utils/ring.elc ${lispdir}packages/compile.elc \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
560 ${lispdir}modes/view-less.elc ${lispdir}emulators/evi.elc \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
561 ${lispdir}packages/font-lock.elc ${lispdir}packages/fast-lock.elc \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
562 ${lispdir}dired/dired.elc ${lispdir}dired/dired-x.elc \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
563 ${lispdir}dired/dired-lucid.elc ${lispdir}prim/userlock.elc \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
564 ${lispdir}energize/energize-init.elc \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
565 ${lispdir}energize/energize-mode.elc \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
566 ${lispdir}energize/energize-windows.elc \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
567 ${lispdir}energize/energize-menus.elc \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
568 ${lispdir}energize/energize-shell.elc \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
569 ${lispdir}energize/energize-visit-use.elc \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
570 ${lispdir}energize/energize-vi.elc \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
571 ${lispdir}energize/energize-font-lock.elc \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
572 ${lispdir}energize/energize-advice.elc
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574 #define ENERGIZE_LISP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 #ifdef SUNPRO
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
578 /* Lisp files preloaded if compiled with support for SunPro products */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
579 #define SUNPRO_LISP \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
580 ${lispdir}packages/sccs.elc \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
581 ${lispdir}sunpro/sunpro-init.elc \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
582 ${lispdir}sunpro/sunpro-menubar.elc \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
583 ${lispdir}sunpro/sunpro-keys.elc \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
584 ${lispdir}eos/sun-eos-init.elc \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
585 ${lispdir}eos/sun-eos-load.elc \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
586 ${lispdir}eos/sun-eos-common.elc \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
587 ${lispdir}eos/sun-eos-editor.elc \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
588 ${lispdir}eos/sun-eos-browser.elc \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
589 ${lispdir}eos/sun-eos-debugger.elc \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
590 ${lispdir}eos/sun-eos-debugger-extra.elc \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
591 ${lispdir}eos/sun-eos-toolbar.elc \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
592 ${lispdir}eos/sun-eos-menubar.elc \
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
593 ${lispdir}comint/comint.elc \
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
594 ${lispdir}utils/ring.elc \
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
595 ${lispdir}utils/annotations.elc \
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
596 ${lispdir}modes/cc-mode.elc \
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
597 ${lispdir}modes/imenu.elc \
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 90
diff changeset
598 ${lispdir}utils/reporter.elc
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599 #else
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
600 #define SUNPRO_LISP
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
601 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603 #ifdef TOOLTALK
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
604 /* Lisp files preloaded if compiled with support for Tooltalk */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
605 #define TOOLTALK_LISP \
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
606 ${lispdir}tooltalk/tooltalk-load.elc \
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
607 ${lispdir}tooltalk/tooltalk-macros.elc \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
608 ${lispdir}tooltalk/tooltalk-util.elc \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
609 ${lispdir}tooltalk/tooltalk-init.elc
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611 #define TOOLTALK_LISP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614 #ifdef LISP_COMMAND_LOOP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615 #define CMDLOOP_LISP ${lispdir}prim/cmdloop1.elc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617 #define CMDLOOP_LISP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620 #ifdef HAVE_TOOLBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621 #define TOOLBAR_LISP ${lispdir}prim/toolbar.elc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
622 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623 #define TOOLBAR_LISP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
625 #ifdef HAVE_MENUBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626 #define MENUBAR_LISP ${lispdir}prim/menubar.elc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 #define MENUBAR_LISP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630 #ifdef HAVE_SCROLLBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631 #define SCROLLBAR_LISP ${lispdir}prim/scrollbar.elc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633 #define SCROLLBAR_LISP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635 #ifdef HAVE_DIALOGS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636 #define DIALOG_LISP ${lispdir}prim/dialog.elc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638 #define DIALOG_LISP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640 #ifdef HAVE_WINDOW_SYSTEM
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
641 #define MOUSE_LISP \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
642 ${lispdir}prim/gui.elc \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
643 ${lispdir}prim/mouse.elc \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
644 ${lispdir}prim/mode-motion.elc
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646 #define MOUSE_LISP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
648
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649 /* List of Lisp files loaded into the dumped Emacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650 Every file that is loaded from loadup.el must be enumerated
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
651 here, or the functions will have no docstrings.
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
652 This is dumb - this list should be generated automatically.
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
653 [Note: "version.el" is included in the doc separately, but is not listed
18
d95e72db5c07 Import from CVS: tag r19-15b92
cvs
parents: 16
diff changeset
654 here because we do not want things to appear to be out-of-date just
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
655 because the version number has been incremented. -- D.N.G. 8/28/93]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
656 */
140
585fb297b004 Import from CVS: tag r20-2b4
cvs
parents: 136
diff changeset
657 lisp= ${lispdir}paths.el ${lispdir}prim/featurep.elc \
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 74
diff changeset
658 ${lispdir}prim/loaddefs.elc ${lispdir}prim/auto-autoloads.elc \
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659 ${lispdir}prim/loadup.el ${lispdir}prim/subr.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660 ${lispdir}prim/cmdloop.elc CMDLOOP_LISP \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661 ${lispdir}utils/text-props.elc MOUSE_LISP \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662 ${lispdir}prim/keymap.elc ${lispdir}prim/syntax.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663 ${lispdir}prim/minibuf.elc ${lispdir}prim/faces.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664 ${lispdir}prim/objects.elc ${lispdir}prim/process.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665 ${lispdir}prim/keydefs.elc ${lispdir}prim/device.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666 ${lispdir}prim/obsolete.elc ${lispdir}prim/glyphs.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667 ${lispdir}prim/extents.elc ${lispdir}prim/backquote.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668 ${lispdir}prim/events.elc ${lispdir}prim/console.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669 ${lispdir}utils/map-ynp.elc ${lispdir}prim/modeline.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670 ${lispdir}prim/profile.elc ${lispdir}modes/list-mode.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671 ${lispdir}utils/derived.elc ${lispdir}cl/cl.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672 ${lispdir}cl/cl-defs.elc ${lispdir}prim/undo-stack.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
673 ${lispdir}prim/simple.elc ${lispdir}prim/help.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674 ${lispdir}prim/files.elc ${lispdir}utils/lib-complete.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675 ${lispdir}prim/indent.elc ${lispdir}prim/frame.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676 TOOLBAR_LISP ${lispdir}prim/format.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677 ${lispdir}prim/window.elc ${lispdir}prim/startup.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678 ${lispdir}prim/lisp.elc ${lispdir}prim/page.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679 ${lispdir}prim/register.elc ${lispdir}iso/iso8859-1.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680 ${lispdir}prim/paragraphs.elc ${lispdir}modes/lisp-mode.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
681 ${lispdir}modes/text-mode.elc ${lispdir}prim/fill.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
682 ${lispdir}prim/isearch-mode.elc ${lispdir}prim/misc.elc \
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
683 ${lispdir}packages/vc-hooks.elc \
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
684 ${lispdir}prim/replace.elc ${lispdir}prim/specifier.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685 ${lispdir}modes/auto-show.elc SUNPRO_LISP TTY_LISP \
120
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 118
diff changeset
686 ${lispdir}bytecomp/bytecomp-runtime.elc FLOAT_LISP \
100
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 98
diff changeset
687 ${lispdir}prim/itimer.elc ${lispdir}prim/itimer-autosave.elc \
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 98
diff changeset
688 ${lispdir}ediff/ediff-hook.elc \
124
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
689 ${lispdir}custom/widget.elc ${lispdir}custom/custom.elc \
9b50b4588a93 Import from CVS: tag r20-1b15
cvs
parents: 122
diff changeset
690 ${lispdir}prim/custom-load.elc ${lispdir}prim/cus-start.elc \
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691 ${lispdir}packages/fontl-hooks.elc SCROLLBAR_LISP \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692 ${lispdir}prim/buffer.elc MENUBAR_LISP \
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
693 ${lispdir}packages/buff-menu.elc DIALOG_LISP MULE_LISP NOMULE_LISP \
120
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 118
diff changeset
694 ${lispdir}modes/abbrev.elc X11_LISP ENERGIZE_LISP TOOLTALK_LISP
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695
18
d95e72db5c07 Import from CVS: tag r19-15b92
cvs
parents: 16
diff changeset
696 /* Other Lisp files that are not dumped out but where it is convenient
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
697 (or required?) for them to be byte-compiled early, before xemacs is
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
698 dumped out. Avoid listing them in ${lisp} because then the
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
699 doc-snarfing routines get confused. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
700 otherlisp= ${lispdir}bytecomp/bytecomp.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701 ${lispdir}bytecomp/byte-optimize.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702 ${lispdir}utils/advice.elc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
704 LIBES = $(LWLIB_LIBS) $(energize_libs) $(quantify_libs) \
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
705 LIBS_DEBUG $(GNULIB_VAR) LIB_STANDARD \
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
706 $(GNULIB_VAR) $(ld_libs_all)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
708 /* Enable recompilation of certain other files depending on system type. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710 #ifndef OTHER_FILES
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711 #define OTHER_FILES
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
714 /* Enable inclusion of object files in temacs depending on system type. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715 #ifndef OBJECTS_SYSTEM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716 #define OBJECTS_SYSTEM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719 #ifndef OBJECTS_MACHINE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720 #define OBJECTS_MACHINE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
722
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723 all: xemacs OTHER_FILES
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725 #ifdef I18N3
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
726 mo_dir = ${etcdir}
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
727 mo_file = ${mo_dir}emacs.mo
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730 LOADPATH = EMACSLOADPATH="${lispdir}prim"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
731 DUMPENV = $(LOADPATH)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
733 release: temacs ${lisp} ${libsrc}DOC $(mo_file) OTHER_FILES
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734 #ifdef CANNOT_DUMP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
735 ln temacs xemacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737 #ifdef HAVE_SHM
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
738 -if [ -w ${srcdir}/../lisp ]; then \
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
739 w=`pwd`; cd ${srcdir} && $${w}/temacs -nl -batch -l inc-vers; \
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740 else true; fi
104
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
741 @touch SATISFIED
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
742 -$(DUMPENV) ./temacs -nl -batch -l loadup.el dump
112
48d667d6f17f Import from CVS: tag r20-1b8
cvs
parents: 110
diff changeset
743 @if [ ! -f SATISFIED ]; then \
104
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
744 $(MAKE) release; \
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
745 fi
112
48d667d6f17f Import from CVS: tag r20-1b8
cvs
parents: 110
diff changeset
746 @/bin/rm -f SATISFIED
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
747 #else /* ! defined (HAVE_SHM) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
748 -if [ -w ${srcdir}/../lisp ]; then \
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
749 w=`pwd`; cd ${srcdir} && $${w}/temacs -batch -l inc-vers; \
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
750 else true; fi
104
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
751 @touch SATISFIED
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
752 -$(DUMPENV) ./temacs -batch -l loadup.el dump
112
48d667d6f17f Import from CVS: tag r20-1b8
cvs
parents: 110
diff changeset
753 @if [ ! -f SATISFIED ]; then \
104
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
754 $(MAKE) release; \
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
755 fi
112
48d667d6f17f Import from CVS: tag r20-1b8
cvs
parents: 110
diff changeset
756 @/bin/rm -f SATISFIED
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
757 #endif /* ! defined (HAVE_SHM) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
758 touch release
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
759 #endif /* ! defined (CANNOT_DUMP) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
760
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
761 xemacs: temacs ${libsrc}DOC ${lisp} $(mo_file) OTHER_FILES
104
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
762 @touch SATISFIED
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
763 -$(DUMPENV) ./temacs -batch -l loadup.el dump
112
48d667d6f17f Import from CVS: tag r20-1b8
cvs
parents: 110
diff changeset
764 @if [ ! -f SATISFIED ]; then \
104
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
765 $(MAKE) xemacs; \
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
766 fi
112
48d667d6f17f Import from CVS: tag r20-1b8
cvs
parents: 110
diff changeset
767 @/bin/rm -f SATISFIED
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
768
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
769 xemacs-no-site-file: temacs ${libsrc}DOC ${lisp} $(mo_file) OTHER_FILES
104
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
770 @touch SATISFIED
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
771 -$(DUMPENV) ./temacs -batch -l loadup.el dump no-site-file
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
772 @test ! -f SATISFIED && $(MAKE) xemacs-no-site-file
112
48d667d6f17f Import from CVS: tag r20-1b8
cvs
parents: 110
diff changeset
773 @/bin/rm -f SATISFIED
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
774
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
775 obj_src = $(objs:.o=.c)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
776
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
777 #ifdef DYNODUMP
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
778 dynodump_builddir = $(dot)$(dot)/dynodump
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
779 dynodump_deps = $(dynodump_builddir)/dynodump.so
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
780 $(dynodump_builddir)/dynodump.so: force
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
781 cd ${dynodump_builddir} && ${MAKE} ${MFLAGS}
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
782 #endif /* DYNODUMP */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
784 #ifdef NO_DOC_FILE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
785 ${libsrc}DOC: ${libsrc}make-docfile
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
786 #else
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
787 ${libsrc}DOC: ${libsrc}make-docfile ${obj_src} ${lisp}
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
788 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
789 rm -f ${libsrc}DOC
114
8619ce7e4c50 Import from CVS: tag r20-1b9
cvs
parents: 112
diff changeset
790 ${libsrc}make-docfile -d ${srcdir} -i ${libsrc}../site-packages \
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
791 ${obj_src} ${mallocdocsrc} ${rallocdocsrc} ${lispdir}version.el \
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
792 ${lisp} > ${libsrc}DOC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
793
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
794 dump_elcs: dump-elcs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
795
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
796 dump-elcs: temacs
112
48d667d6f17f Import from CVS: tag r20-1b8
cvs
parents: 110
diff changeset
797 @touch SATISFIED
48d667d6f17f Import from CVS: tag r20-1b8
cvs
parents: 110
diff changeset
798 -$(LOADPATH) ./temacs -batch -l ../prim/update-elc.el $(lisp) $(otherlisp)
48d667d6f17f Import from CVS: tag r20-1b8
cvs
parents: 110
diff changeset
799 @if [ ! -f SATISFIED ]; then \
48d667d6f17f Import from CVS: tag r20-1b8
cvs
parents: 110
diff changeset
800 $(MAKE) dump-elcs; \
48d667d6f17f Import from CVS: tag r20-1b8
cvs
parents: 110
diff changeset
801 fi
48d667d6f17f Import from CVS: tag r20-1b8
cvs
parents: 110
diff changeset
802 @/bin/rm -f SATISFIED
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
803
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
804 all-elc all-elcs:
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
805 cd .. && $(MAKE) all-elc $(MFLAGS)
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
806
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
807 #ifdef I18N3
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
808
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
809 # if defined(SPARC) && !defined(USG)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
810 xgettext= /usr/openwin/bin/xgettext
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
811 xgettext_args= -o emacs -m_X messages
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
812 msgfmt= /usr/openwin/bin/msgfmt
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
813 # else
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
814 xgettext= xgettext
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
815 xgettext_args= -s -d emacs -M_X messages
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
816 msgfmt= msgfmt
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
817 #endif
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
818
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
819 ${mo_dir}emacs.po: ${libsrc}make-msgfile ${libsrc}make-po ${objs} ${lisp}
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
820 ${libsrc}make-msgfile -o ${libsrc}messages ${objs} ${lisp} ${otherlisp}
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
821 cd ${libsrc} && ${xgettext} ${xgettext_args}
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
822 rm -f ${mo_dir}emacs.po
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
823 cd ${libsrc} && ${libsrc}make-po -a ${mo_dir}emacs.po DOC
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
824
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
825 ${mo_dir}emacs.mo: ${mo_dir}emacs.po
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
826 cd ${mo_dir} && ${msgfmt} -o emacs.mo emacs.po
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
827
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
828 ${libsrc}make-msgfile:
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
829 cd ${libsrc} && ${MAKE} ${MFLAGS} make-msgfile
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
830
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
831 ${libsrc}make-po:
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
832 cd ${libsrc} && ${MAKE} ${MFLAGS} make-po
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
833
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
834 #endif /* I18N3 */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
835
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
836 ${libsrc}make-docfile:
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
837 cd ${libsrc} && ${MAKE} ${MFLAGS} make-docfile
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
838
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
839 /* Lint Section */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
840 LINT.c=$(LINT) $(LINTFLAGS) $(LINTINCLUDES)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
841 LINTFILES= $(objs:.o=.ln)
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
842 LINTINCLUDES = $(cppflags)
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
843 /* LINTFLAGS= -fd -m -p -s -u -v -x */
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
844 LINTFLAGS= -fd -m -s -u -v -x
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
845 lint: $(LINTFILES)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
846 $(LINT.c) $(LINTFILES)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
847 /* end of Lint Section */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
848
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
849 force:
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
850 $(LWLIB_BUILDDIR)/liblw.a: force
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
851 cd ${LWLIB_BUILDDIR} && ${MAKE} ${MFLAGS}
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
852
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
853 /* Some systems define this to cause parallel Make-ing. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
854 #ifndef MAKE_PARALLEL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
855 #define MAKE_PARALLEL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
856 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
857
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
858 temacs_deps = \
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
859 MAKE_PARALLEL $(LOCALCPP) $(SHORT) $(STARTFILES) \
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
860 ${objs} ${otherobjs} OBJECTS_SYSTEM OBJECTS_MACHINE \
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
861 $(LWLIB_DEPS) $(dynodump_deps) prefix-args
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
862
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
863 temacs_link_args = \
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
864 YMF_PASS_LDFLAGS(${STARTFLAGS} ${ldflags} LD_SWITCH_CALL_SHARED) \
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
865 -o $@ ${STARTFILES} ${objs} ${otherobjs} \
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
866 OBJECTS_SYSTEM OBJECTS_MACHINE ${LIBES}
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
867
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
868 temacs_deps: $(temacs_deps)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
869
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
870 temacs: $(temacs_deps)
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
871 $(LD) $(temacs_link_args)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
872
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
873 cemacs: $(temacs_deps)
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
874 $(LD) $(temacs_link_args)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
875
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 74
diff changeset
876 rtc_patch.o:
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 74
diff changeset
877 rtc_patch_area -o $@
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 74
diff changeset
878
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
879 rtcmacs: $(temacs_deps) rtc_patch.o
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
880 rm -f temacs; $(MAKE) $(MAKE_FLAGS) temacs RTC_patch_objs=rtc_patch.o
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 74
diff changeset
881 mv temacs rtcmacs
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 74
diff changeset
882
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 74
diff changeset
883 rtcrun: rtcmacs
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 74
diff changeset
884 dbx -q -C -c \
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 74
diff changeset
885 'dbxenv rtc_error_log_file_name /dev/fd/1; \
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 74
diff changeset
886 dbxenv suppress_startup_message 5.0; \
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 74
diff changeset
887 ignore POLL; \
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 74
diff changeset
888 check -access; \
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 74
diff changeset
889 suppress rui; \
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 74
diff changeset
890 runargs -batch -l loadup.el run-temacs -q; \
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 74
diff changeset
891 run' rtcmacs
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 74
diff changeset
892
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
893 puremacs: $(temacs_deps)
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
894 $(PURIFY_PROG) $(PURIFY_FLAGS) $(LD) $(temacs_link_args)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
895
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
896 quantmacs: $(temacs_deps)
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
897 $(quantify_prog) $(quantify_flags) $(LD) $(temacs_link_args)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
898
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
899 covmacs: $(temacs_deps)
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
900 $(PURECOV_PROG) $(LD) $(temacs_link_args)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
901
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
902 TopLevelEmacsShell.o : ${srcdir}/EmacsShell-sub.c
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
903 $(CC) -c $(cflags) -DDEFINE_TOP_LEVEL_EMACS_SHELL ${srcdir}/EmacsShell-sub.c
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
904 mv EmacsShell-sub.o TopLevelEmacsShell.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
905
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
906 TransientEmacsShell.o : ${srcdir}/EmacsShell-sub.c TopLevelEmacsShell.o
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
907 $(CC) -c $(cflags) -DDEFINE_TRANSIENT_EMACS_SHELL ${srcdir}/EmacsShell-sub.c
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
908 mv EmacsShell-sub.o TransientEmacsShell.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
909
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
910 /* Position-independent code for shared library creation */
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
911 #if USE_GCC
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
912 pic_arg = -fpic
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
913 #elif defined (IRIX)
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
914 pic_arg = -KPIC
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
915 # else
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
916 pic_arg = -K pic
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
917 #endif
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
918
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
919 #ifdef EXTERNAL_WIDGET
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
920
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
921 # define EXTERNAL_CLIENT_MOTIF_OBJS_SHARED ExternalClient-Xm-shared.o extw-Xt-shared.o extw-Xlib-shared.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
922 # define EXTERNAL_CLIENT_XT_OBJS_SHARED ExternalClient-Xt-shared.o extw-Xt-shared.o extw-Xlib-shared.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
923 # define EXTERNAL_CLIENT_XLIB_OBJS_SHARED ExternalClient-Xlib-shared.o extw-Xlib-shared.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
924 # define EXTERNAL_CLIENT_MOTIF_OBJS_NONSHARED ExternalClient-Xm-nonshared.o extw-Xt-nonshared.o extw-Xlib-nonshared.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
925 # define EXTERNAL_CLIENT_XT_OBJS_NONSHARED ExternalClient-Xt-nonshared.o extw-Xt-nonshared.o extw-Xlib-nonshared.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
926 # define EXTERNAL_CLIENT_XLIB_OBJS_NONSHARED ExternalClient-Xlib-nonshared.o extw-Xlib-nonshared.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
927
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
928 /* Add dependencies so things work right with a parallel make */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
929 ExternalClient-Xm-shared.o: ${srcdir}/ExternalClient.c ExternalClient-Xt-shared.o ExternalClient-Xm-nonshared.o
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
930 $(CC) -c $(pic_arg) $(cflags) -DEXTW_USES_MOTIF ${srcdir}/ExternalClient.c
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
931 mv ExternalClient.o ExternalClient-Xm-shared.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
932
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
933 ExternalClient-Xt-shared.o: ${srcdir}/ExternalClient.c ExternalClient-Xt-nonshared.o
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
934 $(CC) -c $(pic_arg) $(cflags) ${srcdir}/ExternalClient.c
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
935 mv ExternalClient.o ExternalClient-Xt-shared.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
936
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
937 ExternalClient-Xlib-shared.o: ${srcdir}/ExternalClient-Xlib.c ExternalClient-Xlib-nonshared.o
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
938 $(CC) -c $(pic_arg) $(cflags) ${srcdir}/ExternalClient-Xlib.c
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
939 mv ExternalClient-Xlib.o ExternalClient-Xlib-shared.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
940
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
941 ExternalClient-Xm-nonshared.o: ${srcdir}/ExternalClient.c ExternalClient-Xt-nonshared.o
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
942 $(CC) -c $(cflags) -DEXTW_USES_MOTIF ${srcdir}/ExternalClient.c
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
943 mv ExternalClient.o ExternalClient-Xm-nonshared.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
944
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
945 ExternalClient-Xt-nonshared.o: ${srcdir}/ExternalClient.c
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
946 $(CC) -c $(cflags) ${srcdir}/ExternalClient.c
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
947 mv ExternalClient.o ExternalClient-Xt-nonshared.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
948
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
949 ExternalClient-Xlib-nonshared.o: ${srcdir}/ExternalClient-Xlib.c
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
950 $(CC) -c $(cflags) ${srcdir}/ExternalClient-Xlib.c
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
951 mv ExternalClient-Xlib.o ExternalClient-Xlib-nonshared.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
952
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
953 /* We compile the common files twice (once with PIC and once without)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
954 because on some systems, compiling with PIC but not linking into
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
955 a shared library messes things up. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
956 extw-Xt-shared.o: ${srcdir}/extw-Xt.c extw-Xt-nonshared.o
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
957 $(CC) -c $(pic_arg) $(cflags) ${srcdir}/extw-Xt.c
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
958 mv extw-Xt.o extw-Xt-shared.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
959
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
960 extw-Xlib-shared.o: ${srcdir}/extw-Xlib.c extw-Xlib-nonshared.o
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
961 $(CC) -c $(pic_arg) $(cflags) ${srcdir}/extw-Xlib.c
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
962 mv extw-Xlib.o extw-Xlib-shared.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
963
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
964 extw-Xt-nonshared.o: ${srcdir}/extw-Xt.c
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
965 $(CC) -c $(cflags) ${srcdir}/extw-Xt.c
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
966 mv extw-Xt.o extw-Xt-nonshared.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
967
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
968 extw-Xlib-nonshared.o: ${srcdir}/extw-Xlib.c
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
969 $(CC) -c $(cflags) ${srcdir}/extw-Xlib.c
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
970 mv extw-Xlib.o extw-Xlib-nonshared.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
971
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
972 libextcli_Xm.a: EXTERNAL_CLIENT_MOTIF_OBJS_NONSHARED
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
973 ar r libextcli_Xm.a EXTERNAL_CLIENT_MOTIF_OBJS_NONSHARED
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
974
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
975 libextcli_Xt.a: EXTERNAL_CLIENT_XT_OBJS_NONSHARED
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
976 ar r libextcli_Xt.a EXTERNAL_CLIENT_XT_OBJS_NONSHARED
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
977
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
978 libextcli_Xlib.a: EXTERNAL_CLIENT_XLIB_OBJS_NONSHARED
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
979 ar r libextcli_Xlib.a EXTERNAL_CLIENT_XLIB_OBJS_NONSHARED
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
980
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
981 #ifdef EXTW_LINK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
982
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
983 libextcli_Xm.so.1: EXTERNAL_CLIENT_MOTIF_OBJS_SHARED
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
984 EXTW_LINK(EXTERNAL_CLIENT_MOTIF_OBJS_SHARED, libextcli_Xm.so.1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
985
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
986 libextcli_Xt.so.1: EXTERNAL_CLIENT_XT_OBJS_SHARED
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
987 EXTW_LINK(EXTERNAL_CLIENT_XT_OBJS_SHARED, libextcli_Xt.so.1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
988
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
989 libextcli_Xlib.so.1: EXTERNAL_CLIENT_XLIB_OBJS_SHARED
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
990 EXTW_LINK(EXTERNAL_CLIENT_XLIB_OBJS_SHARED, libextcli_Xlib.so.1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
991
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
992 #endif /* EXTW_LINK */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
993
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
994 #endif /* EXTERNAL_WIDGET */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
995
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
996 prefix-args: ${srcdir}/prefix-args.c config.h
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
997 $(CC) $(cflags) ${srcdir}/prefix-args.c -o prefix-args
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
998
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
999 /* These are needed for C compilation, on the systems that need them */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1000 #ifdef NEED_CPP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1001 CPP = ./localcpp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1002 localcpp:
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
1003 cd ${cppdir} && ${MAKE} ${MFLAGS} EMACS=-DEMACS
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
1004 ln ${cppdir}cpp localcpp /* Name where cflags will refer to it */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1005 /* cc appears to be cretinous and require all of these to exist
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1006 if -B is specified -- we cannot use one local pass and let the
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1007 others be the standard ones. What a loser.
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1008 We cannot even use ln, since they are probably
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1009 on different disks. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1010 cp /lib/ccom localccom
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1011 -cp /lib/optim localoptim
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1012 -cp /lib/c2 localc2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1013 cp /bin/as localas
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1014 #else /* ! defined (NEED_CPP) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1015 CPP = $(CC) -E
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1016 #endif /* ! defined (NEED_CPP) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1017
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1018 #ifdef SHORTNAMES
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1019 shortnames:
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 78
diff changeset
1020 cd ${shortnamesdir} && ${MAKE} ${MFLAGS}
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1021 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1022
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1023 config.h: ${srcdir}/config.h.in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1024 @echo "The file config.h needs to be set up from config.h.in."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1025 @echo "Consult the file \`INSTALL' for instructions for building Emacs."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1026 exit 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1027
104
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
1028 puresize_adjust.h: ${srcdir}/puresize.h
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
1029 @echo "The file puresize_adjust still needs to be generated."
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
1030 @echo "Please run 'make' from the top-level."
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
1031 exit 1
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
1032
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1033 paths.h: ${srcdir}/paths.h.in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1034 @echo "The file paths.h needs to be set up from paths.h.in."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1035 @echo "Consult the file \`INSTALL' for instructions for building Emacs."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1036 exit 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1037
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1038 Emacs.ad.h: ${srcdir}/${etcdir}Emacs.ad
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1039 @echo "The file Emacs.ad.h needs to be set up from ${srcdir}/${etcdir}Emacs.ad"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1040 @echo "Consult the file \`INSTALL' for instructions for building Emacs."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1041 exit 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1042
120
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 118
diff changeset
1043 /* Cover your eyes, please */
122
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
1044 xemacs-version.h: ../lisp/version.el
d2f30a177268 Import from CVS: tag r20-1b14
cvs
parents: 120
diff changeset
1045 @echo "#define main_1 xemacs_`grep emacs-version ../lisp/version.el | sed -e 's/.*\"\(.*\)\.\(.*\)\"/\1_\2/' -e 1q`_`grep -i xemacs.*lucid.*beta ../lisp/version.el | sed -e 's/.*\(beta[0-9]*\).*/\1/' -e 1q`" > xemacs-version.h
120
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 118
diff changeset
1046
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 118
diff changeset
1047
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1048 /* Some machines have alloca built-in.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1049 They should define HAVE_ALLOCA, or may just let alloca.s
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1050 be used but generate no code.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1051 Some have it written in assembler in alloca.s.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1052 Some use the C version in alloca.c (these define C_ALLOCA in config.h).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1053 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1054
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1055 #ifdef C_ALLOCA
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1056 /* We could put something in alloca.c to #define free and malloc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1057 whenever emacs was #defined, but that's not appropriate for all
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1058 users of alloca in Emacs. Check out ../lib-src/getopt.c. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1059 alloca.o : ${srcdir}/alloca.c
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
1060 $(CC) -c -Dfree=xfree -Dmalloc=xmalloc $(cflags) $<
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1061 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1062 #ifndef HAVE_ALLOCA
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1063 alloca.o : ${srcdir}/alloca.s config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1064 /* $(CPP) is cc -E, which may get confused by filenames
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1065 that do not end in .c. So copy file to a safe name. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1066 cp ${srcdir}/alloca.s allocatem.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1067 /* Remove any ^L, blank lines, and preprocessor comments,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1068 since some assemblers barf on them. Use a different basename for the
18
d95e72db5c07 Import from CVS: tag r19-15b92
cvs
parents: 16
diff changeset
1069 output file, since some stupid compilers (Green Hill) use that
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1070 name for the intermediate assembler file. */
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
1071 $(CPP) $(cppflags) allocatem.c | \
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1072 sed -e 's/ //' -e 's/^#.*//' | \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1073 sed -n -e '/^..*$$/p' > allocax.s
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1074 -rm -f alloca.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1075 /* Xenix, in particular, needs to run assembler via cc. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1076 $(CC) -c allocax.s
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1077 mv allocax.o alloca.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1078 rm -f allocax.s allocatem.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1079 #endif /* HAVE_ALLOCA */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1080 #endif /* ! defined (C_ALLOCA) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1081
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1082 #ifdef EMACS_BTL
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
1083 BTL_includes = -I$(BTL_dir)
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
1084 BTL_compile = -DEMACS_BTL -D`lucid-arch` -I. $(BTL_includes) $(BTL_dir)/$(@:.o=.c)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1085
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1086 cadillac-btl.o cadillac-btl-process.o cadillac-btl-emacs.o:
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
1087 $(CC) $(CFLAGS) -c $(BTL_compile)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1088 cadillac-btl-asm.o:
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
1089 $(CC) $(CFLAGS) -c $(BTL_compile)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1090 #endif /* EMACS_BTL */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1091
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1092 #ifdef ENERGIZE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1093 energize.o: ${srcdir}/energize.c
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
1094 $(CC) -c $(cppflags) $(cflags) $(BTL_includes) $<
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1095 #endif /* ENERGIZE */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1096
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1097 #ifdef HAVE_NATIVE_SOUND
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1098 sunplay.o: ${srcdir}/sunplay.c
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
1099 $(CC) -c $(sound_cflags) $(cflags) $<
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1100 hpplay.o: ${srcdir}/hpplay.c
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
1101 $(CC) -c -Demacs $(sound_cflags) $(cflags) $<
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1102 #endif /* HAVE_NATIVE_SOUND */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1103
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1104 /* System-specific programs to be made.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1105 OTHER_FILES, OBJECTS_SYSTEM and OBJECTS_MACHINE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1106 select which of these should be compiled. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1107
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1108 mostlyclean:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1109 rm -f temacs puremacs quantmacs prefix-args xmakefile* core depend.* \#* *.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1110 rm -f ${libsrc}DOC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1111 clean: mostlyclean
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1112 rm -f xemacs libextcli*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1113 /**/# This is used in making a distribution.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1114 /**/# Do not use it on development directories!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1115 distclean: clean versionclean
120
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 118
diff changeset
1116 rm -f config.h paths.h puresize_adjust.h Emacs.ad.h Makefile Makefile.in .pure version.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1117 realclean: distclean
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1118 rm -f TAGS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1119 versionclean:
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1120 -rm -f xemacs ${libsrc}DOC
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1121 extraclean: realclean
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1122 -rm -f *~ \#* m/?*~ s/?*~
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1123
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1124 /* The rule for the [sm] files has to be written a little funny to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1125 avoid looking like a C comment to CPP. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1126 SOURCES = *.[chm] *.pswm [sm]/?* COPYING paths.h.in Makefile.in.in \
120
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 118
diff changeset
1127 config.h.in README COPYING ChangeLog
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1128 unlock:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1129 chmod u+w $(SOURCES)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1130
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1131 relock:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1132 chmod -w $(SOURCES)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1133
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1134 #ifdef __GNUC__
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1135
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1136 /*** Dependency processing using GCC ***/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1137
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1138 .c.dep:
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
1139 $(CC) -MM $(cflags) $< > $*.dep
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1140
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1141 .SUFFIXES: .dep
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1142
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1143 obj_dep = $(objs:.o=.dep)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1144
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1145 gnu-depend: $(obj_dep)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1146 /* #### Needs a bit of work: it doesn't see the object files that
18
d95e72db5c07 Import from CVS: tag r19-15b92
cvs
parents: 16
diff changeset
1147 we are not compiling */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1148 cat $(obj_dep) | sh ${libsrc}process-gnu-depends.sh > depend.out
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1149
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1150 #endif /* GCC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1151
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1152 /*** Dependency processing using makedepend ***/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1153
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1154 depend:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1155 : > depend.tmp
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1156 makedepend -f depend.tmp -Dsubprocesses -DMOCKLISP_SUPPORT \
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
1157 -DHAVE_X_WINDOWS -DMULE -- $(cppflags) $(cflags) \
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1158 -- *.c
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1159 sh ${libsrc}process-depends.sh < depend.tmp > depend.out
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1160 egrep '^mule|[^a-zA-Z]mule' depend.out > /tmp/depend1.$$
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1161 grep -v '^mule' depend.out | grep -v '[^a-zA-Z]mule' > /tmp/depend2.$$
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1162 echo '#ifdef MULE' > depend.out
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1163 cat /tmp/depend1.$$ >> depend.out
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1164 /* The things you have to do to pay homage to the lexer God ...
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1165 truly frightening. */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1166 echo '#endif /''* MULE *''/' >> depend.out
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1167 echo '' >> depend.out
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1168 cat /tmp/depend2.$$ >> depend.out
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1169 rm -f /tmp/depend1.$$ /tmp/depend2.$$
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1170
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1171 /* Manually-generated dependencies (makedepend misbehaves on these) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1172
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1173 /* (actually makedepend does OK on these but we want to conditionalize
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1174 them) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1175 #ifdef EXTERNAL_WIDGET
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1176 ExternalClient-Xlib.o: extw-Xlib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1177 ExternalClient-Xm.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1178 ExternalClient-Xm.o: xintrinsicp.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1179 ExternalClient-Xm.o: ExternalClient.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1180 ExternalClient-Xm.o: ExternalClientP.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1181 ExternalClient-Xm.o: extw-Xlib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1182 ExternalClient-Xm.o: extw-Xt.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1183 ExternalClient-Xt.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1184 ExternalClient-Xt.o: xintrinsicp.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1185 ExternalClient-Xt.o: ExternalClient.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1186 ExternalClient-Xt.o: ExternalClientP.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1187 ExternalClient-Xt.o: extw-Xlib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1188 ExternalClient-Xt.o: extw-Xt.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1189 ExternalShell.o: ExternalShell.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1190 ExternalShell.o: ExternalShellP.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1191 ExternalShell.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1192 ExternalShell.o: extw-Xlib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1193 ExternalShell.o: extw-Xt.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1194 ExternalShell.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1195 ExternalShell.o: xintrinsicp.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1196 extw-Xlib-shared.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1197 extw-Xlib-shared.o: extw-Xlib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1198 extw-Xt-shared.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1199 extw-Xt-shared.o: extw-Xlib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1200 extw-Xt-shared.o: extw-Xt.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1201 extw-Xlib-nonshared.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1202 extw-Xlib-nonshared.o: extw-Xlib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1203 extw-Xt-nonshared.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1204 extw-Xt-nonshared.o: extw-Xlib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1205 extw-Xt-nonshared.o: extw-Xt.h
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
1206 #endif /* EXTERNAL_WIDGET */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1207
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1208 #ifdef EMACS_BTL
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
1209 cadillac-btl.o: $(BTL_dir)/cadillac-btl.c
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
1210 cadillac-btl.o: $(BTL_dir)/cadillac-btl.h
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
1211 cadillac-btl.o: $(BTL_dir)/cadillac-btl-extern.h
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
1212 cadillac-btl-asm.o: $(BTL_dir)/cadillac-btl-asm.c
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
1213 cadillac-btl-asm.o: $(BTL_dir)/cadillac-btl.h
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
1214 cadillac-btl-asm.o: $(BTL_dir)/cadillac-btl-extern.h
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
1215 cadillac-btl-emacs.o: $(BTL_dir)/cadillac-btl-extern.h
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
1216 cadillac-btl-process.o: $(BTL_dir)/cadillac-btl-process.c
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
1217 cadillac-btl-process.o: $(BTL_dir)/cadillac-btl.h
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
1218 cadillac-btl-process.o: $(BTL_dir)/cadillac-btl-extern.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1219 #endif /* EMACS_BTL */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1220
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1221 /* (makedepend definitely misbehaves on these) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1222 sgiplay.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1223 sgiplay.o: libst.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1224 unexconvex.o: getpagesize.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1225 unexec.o: getpagesize.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1226 unexaix.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1227 unexalpha.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1228 unexapollo.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1229 unexconvex.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1230 unexec.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1231 unexelf.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1232 unexenix.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1233 unexfreebsd.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1234 unexhp9k3.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1235 unexhp9k800.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1236 unexmips.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1237 unexsunos4.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1238
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1239 /* Dependencies generated by 'make depend' */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1240
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1241 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1242 EmacsFrame.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1243 abbrev.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1244 alloc.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1245 buffer.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1246 bytecode.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1247 callint.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1248 callproc.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1249 callproc.o: mule-coding.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1250 casefiddle.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1251 casetab.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1252 chartab.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1253 cmdloop.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1254 cmds.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1255 console-tty.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1256 console-tty.o: mule-coding.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1257 console.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1258 data.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1259 device-tty.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1260 device-x.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1261 device.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1262 dialog-x.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1263 dired.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1264 doc.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1265 doprnt.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1266 editfns.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1267 emacs.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1268 eval.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1269 event-Xt.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1270 event-stream.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1271 event-stream.o: mule-coding.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1272 events.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1273 extents.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1274 faces.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1275 fileio.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1276 fileio.o: mule-coding.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1277 filelock.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1278 fns.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1279 font-lock.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1280 frame-x.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1281 frame.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1282 glyphs-x.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1283 glyphs.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1284 gui-x.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1285 indent.o: mule-charset.h
118
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
1286 inline.o: mule-charset.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
1287 inline.o: mule-coding.h
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1288 input-method-xlib.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1289 input-method-xlib.o: mule-coding.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1290 insdel.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1291 keymap.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1292 lread.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1293 lread.o: mule-coding.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1294 lstream.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1295 macros.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1296 marker.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1297 md5.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1298 menubar-x.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1299 minibuf.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1300 mocklisp.o: mule-charset.h
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
1301 #ifdef HAVE_CANNA
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1302 mule-canna.o: blocktype.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1303 mule-canna.o: buffer.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1304 mule-canna.o: bufslots.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1305 mule-canna.o: config.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1306 mule-canna.o: dynarr.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1307 mule-canna.o: mule-charset.h
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
1308 #endif /* HAVE_CANNA */
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1309 mule-ccl.o: blocktype.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1310 mule-ccl.o: buffer.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1311 mule-ccl.o: bufslots.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1312 mule-ccl.o: config.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1313 mule-ccl.o: dynarr.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1314 mule-ccl.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1315 mule-ccl.o: mule-coding.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1316 mule-charset.o: blocktype.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1317 mule-charset.o: buffer.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1318 mule-charset.o: bufslots.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1319 mule-charset.o: chartab.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1320 mule-charset.o: config.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1321 mule-charset.o: dynarr.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1322 mule-charset.o: elhash.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1323 mule-charset.o: lstream.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1324 mule-charset.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1325 mule-coding.o: blocktype.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1326 mule-coding.o: buffer.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1327 mule-coding.o: bufslots.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1328 mule-coding.o: config.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1329 mule-coding.o: dynarr.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1330 mule-coding.o: elhash.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1331 mule-coding.o: insdel.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1332 mule-coding.o: lstream.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1333 mule-coding.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1334 mule-coding.o: mule-coding.h
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
1335 #if 0
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1336 mule-mcpath.o: blocktype.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1337 mule-mcpath.o: buffer.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1338 mule-mcpath.o: bufslots.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1339 mule-mcpath.o: config.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1340 mule-mcpath.o: dynarr.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1341 mule-mcpath.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1342 mule-mcpath.o: sysfile.h
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
1343 #endif /* obsolete */
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
1344 #ifdef HAVE_WNN
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1345 mule-wnnfns.o: blocktype.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1346 mule-wnnfns.o: buffer.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1347 mule-wnnfns.o: bufslots.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1348 mule-wnnfns.o: config.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1349 mule-wnnfns.o: dynarr.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1350 mule-wnnfns.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1351 mule-wnnfns.o: redisplay.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1352 mule-wnnfns.o: scrollbar.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1353 mule-wnnfns.o: window.h
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
1354 #endif /* HAVE_WNN */
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1355 mule.o: blocktype.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1356 mule.o: config.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1357 mule.o: dynarr.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1358 mule.o: regex.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1359 objects-tty.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1360 objects-x.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1361 objects.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1362 print.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1363 process.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1364 process.o: mule-coding.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1365 redisplay-output.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1366 redisplay-tty.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1367 redisplay-x.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1368 redisplay-x.o: mule-coding.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1369 redisplay.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1370 redisplay.o: mule-coding.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1371 regex.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1372 scrollbar.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1373 search.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1374 sound.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1375 specifier.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1376 symbols.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1377 syntax.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1378 sysdep.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1379 toolbar-x.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1380 toolbar.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1381 tooltalk.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1382 undo.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1383 window.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1384 xselect.o: mule-charset.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1385 #endif /* MULE */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1386
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
1387 EmacsFrame.o: $(LWLIB_SRCDIR)/lwlib.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1388 EmacsFrame.o: EmacsFrame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1389 EmacsFrame.o: EmacsFrameP.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1390 EmacsFrame.o: EmacsManager.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1391 EmacsFrame.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1392 EmacsFrame.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1393 EmacsFrame.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1394 EmacsFrame.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1395 EmacsFrame.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1396 EmacsFrame.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1397 EmacsFrame.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1398 EmacsFrame.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1399 EmacsFrame.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1400 EmacsFrame.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1401 EmacsFrame.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1402 EmacsFrame.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1403 EmacsFrame.o: glyphs-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1404 EmacsFrame.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1405 EmacsFrame.o: objects-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1406 EmacsFrame.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1407 EmacsFrame.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1408 EmacsFrame.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1409 EmacsFrame.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1410 EmacsFrame.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1411 EmacsFrame.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1412 EmacsFrame.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1413 EmacsFrame.o: xintrinsicp.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1414 EmacsFrame.o: xmprimitivep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1415 EmacsFrame.o: xmu.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1416 EmacsManager.o: EmacsManager.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1417 EmacsManager.o: EmacsManagerP.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1418 EmacsManager.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1419 EmacsManager.o: xintrinsicp.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1420 EmacsManager.o: xmmanagerp.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1421 EmacsShell-sub.o: EmacsShell.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1422 EmacsShell-sub.o: EmacsShellP.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1423 EmacsShell-sub.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1424 EmacsShell-sub.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1425 EmacsShell-sub.o: xintrinsicp.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1426 EmacsShell.o: EmacsShell.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1427 EmacsShell.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1428 EmacsShell.o: xintrinsicp.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1429 abbrev.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1430 abbrev.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1431 abbrev.o: bufslots.h
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1432 abbrev.o: chartab.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1433 abbrev.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1434 abbrev.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1435 abbrev.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1436 abbrev.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1437 abbrev.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1438 abbrev.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1439 abbrev.o: syntax.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1440 abbrev.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1441 alloc.o: backtrace.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1442 alloc.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1443 alloc.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1444 alloc.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1445 alloc.o: bytecode.h
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1446 alloc.o: chartab.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1447 alloc.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1448 alloc.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1449 alloc.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1450 alloc.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1451 alloc.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1452 alloc.o: elhash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1453 alloc.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1454 alloc.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1455 alloc.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1456 alloc.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1457 alloc.o: glyphs.h
104
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
1458 alloc.o: puresize.h puresize_adjust.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1459 alloc.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1460 alloc.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1461 alloc.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1462 alloc.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1463 alloc.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1464 alloc.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1465 alloca.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1466 blocktype.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1467 blocktype.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1468 blocktype.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1469 buffer.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1470 buffer.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1471 buffer.o: bufslots.h
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1472 buffer.o: chartab.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1473 buffer.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1474 buffer.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1475 buffer.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1476 buffer.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1477 buffer.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1478 buffer.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1479 buffer.o: elhash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1480 buffer.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1481 buffer.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1482 buffer.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1483 buffer.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1484 buffer.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1485 buffer.o: process.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1486 buffer.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1487 buffer.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1488 buffer.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1489 buffer.o: syntax.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1490 buffer.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1491 buffer.o: sysfile.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1492 buffer.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1493 buffer.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1494 bytecode.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1495 bytecode.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1496 bytecode.o: bufslots.h
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1497 bytecode.o: chartab.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1498 bytecode.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1499 bytecode.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1500 bytecode.o: syntax.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1501 callint.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1502 callint.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1503 callint.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1504 callint.o: bytecode.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1505 callint.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1506 callint.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1507 callint.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1508 callint.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1509 callint.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1510 callint.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1511 callint.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1512 callint.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1513 callint.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1514 callproc.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1515 callproc.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1516 callproc.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1517 callproc.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1518 callproc.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1519 callproc.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1520 callproc.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1521 callproc.o: lstream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1522 callproc.o: paths.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1523 callproc.o: process.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1524 callproc.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1525 callproc.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1526 callproc.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1527 callproc.o: sysfile.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1528 callproc.o: sysproc.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1529 callproc.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1530 callproc.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1531 callproc.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1532 casefiddle.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1533 casefiddle.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1534 casefiddle.o: bufslots.h
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1535 casefiddle.o: chartab.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1536 casefiddle.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1537 casefiddle.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1538 casefiddle.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1539 casefiddle.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1540 casefiddle.o: syntax.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1541 casetab.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1542 casetab.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1543 casetab.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1544 casetab.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1545 casetab.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1546 casetab.o: opaque.h
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1547 chartab.o: blocktype.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1548 chartab.o: buffer.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1549 chartab.o: bufslots.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1550 chartab.o: chartab.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1551 chartab.o: commands.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1552 chartab.o: config.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1553 chartab.o: dynarr.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1554 chartab.o: syntax.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1555 cm.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1556 cm.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1557 cm.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1558 cm.o: console-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1559 cm.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1560 cm.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1561 cm.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1562 cm.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1563 cm.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1564 cm.o: lstream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1565 cm.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1566 cm.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1567 cm.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1568 cm.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1569 cm.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1570 cmdloop.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1571 cmdloop.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1572 cmdloop.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1573 cmdloop.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1574 cmdloop.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1575 cmdloop.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1576 cmdloop.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1577 cmdloop.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1578 cmdloop.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1579 cmdloop.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1580 cmdloop.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1581 cmdloop.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1582 cmdloop.o: macros.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1583 cmdloop.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1584 cmdloop.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1585 cmdloop.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1586 cmdloop.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1587 cmdloop.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1588 cmdloop.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1589 cmds.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1590 cmds.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1591 cmds.o: bufslots.h
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
1592 cmds.o: chartab.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1593 cmds.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1594 cmds.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1595 cmds.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1596 cmds.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1597 cmds.o: syntax.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1598 console-stream.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1599 console-stream.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1600 console-stream.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1601 console-stream.o: console-stream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1602 console-stream.o: console-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1603 console-stream.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1604 console-stream.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1605 console-stream.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1606 console-stream.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1607 console-stream.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1608 console-stream.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1609 console-stream.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1610 console-stream.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1611 console-stream.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1612 console-stream.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1613 console-stream.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1614 console-stream.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1615 console-stream.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1616 console-stream.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1617 console-tty.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1618 console-tty.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1619 console-tty.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1620 console-tty.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1621 console-tty.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1622 console-tty.o: console-stream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1623 console-tty.o: console-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1624 console-tty.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1625 console-tty.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1626 console-tty.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1627 console-tty.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1628 console-tty.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1629 console-tty.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1630 console-tty.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1631 console-tty.o: lstream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1632 console-tty.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1633 console-tty.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1634 console-tty.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1635 console-tty.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1636 console-tty.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1637 console-tty.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1638 console-tty.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1639 console-x.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1640 console-x.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1641 console-x.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1642 console-x.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1643 console-x.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1644 console-x.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1645 console-x.o: process.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1646 console-x.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1647 console-x.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1648 console.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1649 console.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1650 console.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1651 console.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1652 console.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1653 console.o: console-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1654 console.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1655 console.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1656 console.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1657 console.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1658 console.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1659 console.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1660 console.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1661 console.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1662 console.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1663 console.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1664 console.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1665 console.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1666 console.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1667 console.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1668 data.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1669 data.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1670 data.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1671 data.o: bytecode.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1672 data.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1673 data.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1674 data.o: sysfloat.h
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
1675 #ifdef HAVE_DATABASE
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1676 database.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1677 database.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1678 database.o: database.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1679 database.o: dynarr.h
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
1680 #endif /* HAVE_DATABASE */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1681 debug.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1682 debug.o: bytecode.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1683 debug.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1684 debug.o: debug.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1685 debug.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1686 device-tty.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1687 device-tty.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1688 device-tty.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1689 device-tty.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1690 device-tty.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1691 device-tty.o: console-stream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1692 device-tty.o: console-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1693 device-tty.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1694 device-tty.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1695 device-tty.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1696 device-tty.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1697 device-tty.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1698 device-tty.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1699 device-tty.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1700 device-tty.o: lstream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1701 device-tty.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1702 device-tty.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1703 device-tty.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1704 device-tty.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1705 device-tty.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1706 device-tty.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1707 device-tty.o: toolbar.h
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
1708 device-x.o: $(LWLIB_SRCDIR)/lwlib.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1709 device-x.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1710 device-x.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1711 device-x.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1712 device-x.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1713 device-x.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1714 device-x.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1715 device-x.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1716 device-x.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1717 device-x.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1718 device-x.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1719 device-x.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1720 device-x.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1721 device-x.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1722 device-x.o: glyphs-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1723 device-x.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1724 device-x.o: objects-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1725 device-x.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1726 device-x.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1727 device-x.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1728 device-x.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1729 device-x.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1730 device-x.o: sysfile.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1731 device-x.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1732 device-x.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1733 device-x.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1734 device-x.o: xgccache.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1735 device-x.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1736 device-x.o: xintrinsicp.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1737 device-x.o: xmu.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1738 device.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1739 device.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1740 device.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1741 device.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1742 device.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1743 device.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1744 device.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1745 device.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1746 device.o: elhash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1747 device.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1748 device.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1749 device.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1750 device.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1751 device.o: keymap.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1752 device.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1753 device.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1754 device.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1755 device.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1756 device.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1757 device.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1758 device.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1759 dgif_lib.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1760 dgif_lib.o: gif_lib.h
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
1761 dialog-x.o: $(LWLIB_SRCDIR)/lwlib.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1762 dialog-x.o: EmacsFrame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1763 dialog-x.o: EmacsManager.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1764 dialog-x.o: EmacsShell.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1765 dialog-x.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1766 dialog-x.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1767 dialog-x.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1768 dialog-x.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1769 dialog-x.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1770 dialog-x.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1771 dialog-x.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1772 dialog-x.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1773 dialog-x.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1774 dialog-x.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1775 dialog-x.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1776 dialog-x.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1777 dialog-x.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1778 dialog-x.o: gui-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1779 dialog-x.o: opaque.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1780 dialog-x.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1781 dialog-x.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1782 dialog-x.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1783 dialog-x.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1784 dialog-x.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1785 dialog-x.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1786 dialog-x.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1787 dialog.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1788 dialog.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1789 dialog.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1790 dired.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1791 dired.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1792 dired.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1793 dired.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1794 dired.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1795 dired.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1796 dired.o: elhash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1797 dired.o: regex.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1798 dired.o: sysdir.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1799 dired.o: sysfile.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1800 doc.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1801 doc.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1802 doc.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1803 doc.o: bytecode.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1804 doc.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1805 doc.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1806 doc.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1807 doc.o: keymap.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1808 doc.o: sysfile.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1809 doprnt.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1810 doprnt.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1811 doprnt.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1812 doprnt.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1813 doprnt.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1814 doprnt.o: lstream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1815 dynarr.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1816 dynarr.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1817 dynarr.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1818 ecrt0.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1819 editfns.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1820 editfns.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1821 editfns.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1822 editfns.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1823 editfns.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1824 editfns.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1825 editfns.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1826 editfns.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1827 editfns.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1828 editfns.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1829 editfns.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1830 editfns.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1831 editfns.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1832 editfns.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1833 editfns.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1834 editfns.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1835 editfns.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1836 editfns.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1837 editfns.o: syspwd.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1838 editfns.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1839 editfns.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1840 editfns.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1841 elhash.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1842 elhash.o: bytecode.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1843 elhash.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1844 elhash.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1845 elhash.o: elhash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1846 elhash.o: hash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1847 emacs.o: backtrace.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1848 emacs.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1849 emacs.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1850 emacs.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1851 emacs.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1852 emacs.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1853 emacs.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1854 emacs.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1855 emacs.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1856 emacs.o: process.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1857 emacs.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1858 emacs.o: sysfile.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1859 emacs.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1860 emacs.o: systty.h
120
cca96a509cfe Import from CVS: tag r20-1b12
cvs
parents: 118
diff changeset
1861 emacs.o: xemacs-version.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1862 energize.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1863 eval.o: backtrace.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1864 eval.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1865 eval.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1866 eval.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1867 eval.o: bytecode.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1868 eval.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1869 eval.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1870 eval.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1871 eval.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1872 eval.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1873 eval.o: opaque.h
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
1874 event-Xt.o: $(LWLIB_SRCDIR)/lwlib.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1875 event-Xt.o: Emacs.ad.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1876 event-Xt.o: EmacsFrame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1877 event-Xt.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1878 event-Xt.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1879 event-Xt.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1880 event-Xt.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1881 event-Xt.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1882 event-Xt.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1883 event-Xt.o: console-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1884 event-Xt.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1885 event-Xt.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1886 event-Xt.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1887 event-Xt.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1888 event-Xt.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1889 event-Xt.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1890 event-Xt.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1891 event-Xt.o: objects-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1892 event-Xt.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1893 event-Xt.o: paths.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1894 event-Xt.o: process.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1895 event-Xt.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1896 event-Xt.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1897 event-Xt.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1898 event-Xt.o: sysproc.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1899 event-Xt.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1900 event-Xt.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1901 event-Xt.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1902 event-Xt.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1903 event-Xt.o: xintrinsicp.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1904 event-stream.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1905 event-stream.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1906 event-stream.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1907 event-stream.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1908 event-stream.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1909 event-stream.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1910 event-stream.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1911 event-stream.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1912 event-stream.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1913 event-stream.o: elhash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1914 event-stream.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1915 event-stream.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1916 event-stream.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1917 event-stream.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1918 event-stream.o: keymap.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1919 event-stream.o: lstream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1920 event-stream.o: macros.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1921 event-stream.o: opaque.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1922 event-stream.o: process.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1923 event-stream.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1924 event-stream.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1925 event-stream.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1926 event-stream.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1927 event-stream.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1928 event-stream.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1929 event-stream.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1930 event-tty.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1931 event-tty.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1932 event-tty.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1933 event-tty.o: console-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1934 event-tty.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1935 event-tty.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1936 event-tty.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1937 event-tty.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1938 event-tty.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1939 event-tty.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1940 event-tty.o: paths.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1941 event-tty.o: process.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1942 event-tty.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1943 event-tty.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1944 event-tty.o: sysproc.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1945 event-tty.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1946 event-tty.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1947 event-tty.o: syswait.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1948 event-tty.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1949 event-unixoid.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1950 event-unixoid.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1951 event-unixoid.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1952 event-unixoid.o: console-stream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1953 event-unixoid.o: console-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1954 event-unixoid.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1955 event-unixoid.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1956 event-unixoid.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1957 event-unixoid.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1958 event-unixoid.o: paths.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1959 event-unixoid.o: process.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1960 event-unixoid.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1961 event-unixoid.o: sysproc.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1962 event-unixoid.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1963 event-unixoid.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1964 events.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1965 events.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1966 events.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1967 events.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1968 events.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1969 events.o: console-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1970 events.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1971 events.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1972 events.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1973 events.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1974 events.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1975 events.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1976 events.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1977 events.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1978 events.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1979 events.o: keymap.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1980 events.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1981 events.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1982 events.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1983 events.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1984 events.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1985 events.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1986 events.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1987 events.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1988 extents.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1989 extents.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1990 extents.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1991 extents.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1992 extents.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1993 extents.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1994 extents.o: debug.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1995 extents.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1996 extents.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1997 extents.o: elhash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1998 extents.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1999 extents.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2000 extents.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2001 extents.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2002 extents.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2003 extents.o: hash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2004 extents.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2005 extents.o: opaque.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2006 extents.o: process.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2007 extents.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2008 extents.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2009 extents.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2010 extents.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2011 faces.o: EmacsFrame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2012 faces.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2013 faces.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2014 faces.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2015 faces.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2016 faces.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2017 faces.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2018 faces.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2019 faces.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2020 faces.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2021 faces.o: elhash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2022 faces.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2023 faces.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2024 faces.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2025 faces.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2026 faces.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2027 faces.o: hash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2028 faces.o: objects-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2029 faces.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2030 faces.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2031 faces.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2032 faces.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2033 faces.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2034 faces.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2035 faces.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2036 fileio.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2037 fileio.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2038 fileio.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2039 fileio.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2040 fileio.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2041 fileio.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2042 fileio.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2043 fileio.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2044 fileio.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2045 fileio.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2046 fileio.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2047 fileio.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2048 fileio.o: lstream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2049 fileio.o: paths.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2050 fileio.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2051 fileio.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2052 fileio.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2053 fileio.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2054 fileio.o: sysdir.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2055 fileio.o: sysfile.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2056 fileio.o: sysproc.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2057 fileio.o: syspwd.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2058 fileio.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2059 fileio.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2060 fileio.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2061 filelock.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2062 filelock.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2063 filelock.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2064 filelock.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2065 filelock.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2066 filelock.o: paths.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2067 filelock.o: sysdir.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2068 filelock.o: sysfile.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2069 filelock.o: syspwd.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2070 filemode.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2071 filemode.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2072 filemode.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2073 filemode.o: sysfile.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2074 floatfns.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2075 floatfns.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2076 floatfns.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2077 floatfns.o: sysfloat.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2078 fns.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2079 fns.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2080 fns.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2081 fns.o: bytecode.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2082 fns.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2083 fns.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2084 fns.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2085 fns.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2086 fns.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2087 fns.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2088 fns.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2089 fns.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2090 fns.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2091 fns.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2092 fns.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2093 fns.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2094 fns.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2095 fns.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2096 font-lock.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2097 font-lock.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2098 font-lock.o: bufslots.h
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
2099 font-lock.o: chartab.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2100 font-lock.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2101 font-lock.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2102 font-lock.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2103 font-lock.o: syntax.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2104 frame-tty.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2105 frame-tty.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2106 frame-tty.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2107 frame-tty.o: console-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2108 frame-tty.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2109 frame-tty.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2110 frame-tty.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2111 frame-tty.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2112 frame-tty.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2113 frame-tty.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2114 frame-tty.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2115 frame-tty.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2116 frame-tty.o: toolbar.h
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
2117 frame-x.o: $(LWLIB_SRCDIR)/lwlib.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2118 frame-x.o: EmacsFrame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2119 frame-x.o: EmacsFrameP.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2120 frame-x.o: EmacsManager.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2121 frame-x.o: EmacsShell.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2122 frame-x.o: ExternalShell.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2123 frame-x.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2124 frame-x.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2125 frame-x.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2126 frame-x.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2127 frame-x.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2128 frame-x.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2129 frame-x.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2130 frame-x.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2131 frame-x.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2132 frame-x.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2133 frame-x.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2134 frame-x.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2135 frame-x.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2136 frame-x.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2137 frame-x.o: glyphs-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2138 frame-x.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2139 frame-x.o: objects-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2140 frame-x.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2141 frame-x.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2142 frame-x.o: scrollbar-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2143 frame-x.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2144 frame-x.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2145 frame-x.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2146 frame-x.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2147 frame-x.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2148 frame-x.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2149 frame-x.o: xintrinsicp.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2150 frame-x.o: xmprimitivep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2151 frame-x.o: xmu.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2152 frame.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2153 frame.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2154 frame.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2155 frame.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2156 frame.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2157 frame.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2158 frame.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2159 frame.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2160 frame.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2161 frame.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2162 frame.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2163 frame.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2164 frame.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2165 frame.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2166 frame.o: menubar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2167 frame.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2168 frame.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2169 frame.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2170 frame.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2171 frame.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2172 frame.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2173 frame.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2174 free-hook.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2175 free-hook.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2176 free-hook.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2177 free-hook.o: hash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2178 general.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2179 general.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2180 general.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2181 getloadavg.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2182 getloadavg.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2183 getloadavg.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2184 gif_err.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2185 gif_err.o: gif_lib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2186 gifalloc.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2187 gifalloc.o: gif_lib.h
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
2188 glyphs-x.o: $(LWLIB_SRCDIR)/lwlib.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2189 glyphs-x.o: ${srcdir}/${etcdir}xemacs.xbm
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2190 glyphs-x.o: bitmaps.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2191 glyphs-x.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2192 glyphs-x.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2193 glyphs-x.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2194 glyphs-x.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2195 glyphs-x.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2196 glyphs-x.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2197 glyphs-x.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2198 glyphs-x.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2199 glyphs-x.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2200 glyphs-x.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2201 glyphs-x.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2202 glyphs-x.o: gif_lib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2203 glyphs-x.o: glyphs-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2204 glyphs-x.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2205 glyphs-x.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2206 glyphs-x.o: objects-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2207 glyphs-x.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2208 glyphs-x.o: opaque.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2209 glyphs-x.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2210 glyphs-x.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2211 glyphs-x.o: sysfile.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2212 glyphs-x.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2213 glyphs-x.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2214 glyphs-x.o: xmu.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2215 glyphs.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2216 glyphs.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2217 glyphs.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2218 glyphs.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2219 glyphs.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2220 glyphs.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2221 glyphs.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2222 glyphs.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2223 glyphs.o: elhash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2224 glyphs.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2225 glyphs.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2226 glyphs.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2227 glyphs.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2228 glyphs.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2229 glyphs.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2230 glyphs.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2231 glyphs.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2232 glyphs.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2233 glyphs.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2234 gmalloc.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2235 gmalloc.o: getpagesize.h
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
2236 gui-x.o: $(LWLIB_SRCDIR)/lwlib.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2237 gui-x.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2238 gui-x.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2239 gui-x.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2240 gui-x.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2241 gui-x.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2242 gui-x.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2243 gui-x.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2244 gui-x.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2245 gui-x.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2246 gui-x.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2247 gui-x.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2248 gui-x.o: gui-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2249 gui-x.o: opaque.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2250 gui-x.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2251 gui-x.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2252 gui-x.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2253 gui-x.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2254 gui.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2255 gui.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2256 gui.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2257 hash.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2258 hash.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2259 hash.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2260 hash.o: elhash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2261 hash.o: hash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2262 hftctl.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2263 hftctl.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2264 hftctl.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2265 hpplay.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2266 hpplay.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2267 hpplay.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2268 indent.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2269 indent.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2270 indent.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2271 indent.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2272 indent.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2273 indent.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2274 indent.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2275 indent.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2276 indent.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2277 indent.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2278 indent.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2279 indent.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2280 indent.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2281 indent.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2282 indent.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2283 indent.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2284 indent.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2285 indent.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2286 indent.o: window.h
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
2287 inline.o: $(LWLIB_SRCDIR)/lwlib.h
118
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2288 inline.o: blocktype.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2289 inline.o: buffer.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2290 inline.o: bufslots.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2291 inline.o: bytecode.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2292 inline.o: chartab.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2293 inline.o: config.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2294 inline.o: conslots.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2295 inline.o: console-x.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2296 inline.o: console.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2297 inline.o: device.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2298 inline.o: dynarr.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2299 inline.o: elhash.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2300 inline.o: events.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2301 inline.o: extents.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2302 inline.o: faces.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2303 inline.o: frame.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2304 inline.o: frameslots.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2305 inline.o: glyphs-x.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2306 inline.o: glyphs.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2307 inline.o: gui-x.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2308 inline.o: keymap.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2309 inline.o: lstream.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2310 inline.o: objects.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2311 inline.o: opaque.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2312 inline.o: process.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2313 inline.o: redisplay.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2314 inline.o: scrollbar.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2315 inline.o: specifier.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2316 inline.o: syntax.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2317 inline.o: systime.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2318 inline.o: toolbar.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2319 inline.o: window.h
7d55a9ba150c Import from CVS: tag r20-1b11
cvs
parents: 114
diff changeset
2320 inline.o: xintrinsic.h
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
2321 input-method-xlib.o: EmacsFrame.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
2322 input-method-xlib.o: blocktype.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
2323 input-method-xlib.o: buffer.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
2324 input-method-xlib.o: bufslots.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
2325 input-method-xlib.o: config.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
2326 input-method-xlib.o: conslots.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
2327 input-method-xlib.o: console-x.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
2328 input-method-xlib.o: console.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
2329 input-method-xlib.o: device.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
2330 input-method-xlib.o: dynarr.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
2331 input-method-xlib.o: frame.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
2332 input-method-xlib.o: frameslots.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
2333 input-method-xlib.o: insdel.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
2334 input-method-xlib.o: lstream.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
2335 input-method-xlib.o: redisplay.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
2336 input-method-xlib.o: scrollbar.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
2337 input-method-xlib.o: specifier.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
2338 input-method-xlib.o: toolbar.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
2339 input-method-xlib.o: window.h
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
2340 input-method-xlib.o: xintrinsic.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2341 insdel.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2342 insdel.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2343 insdel.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2344 insdel.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2345 insdel.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2346 insdel.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2347 insdel.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2348 insdel.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2349 insdel.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2350 insdel.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2351 insdel.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2352 insdel.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2353 insdel.o: lstream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2354 insdel.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2355 insdel.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2356 insdel.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2357 insdel.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2358 intl.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2359 intl.o: bytecode.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2360 intl.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2361 intl.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2362 intl.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2363 intl.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2364 intl.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2365 keymap.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2366 keymap.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2367 keymap.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2368 keymap.o: bytecode.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2369 keymap.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2370 keymap.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2371 keymap.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2372 keymap.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2373 keymap.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2374 keymap.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2375 keymap.o: elhash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2376 keymap.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2377 keymap.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2378 keymap.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2379 keymap.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2380 keymap.o: keymap.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2381 keymap.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2382 keymap.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2383 keymap.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2384 keymap.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2385 keymap.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2386 keymap.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2387 libsst.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2388 libsst.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2389 libsst.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2390 libsst.o: libsst.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2391 linuxplay.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2392 linuxplay.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2393 linuxplay.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2394 lread.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2395 lread.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2396 lread.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2397 lread.o: bytecode.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2398 lread.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2399 lread.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2400 lread.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2401 lread.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2402 lread.o: lstream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2403 lread.o: opaque.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2404 lread.o: paths.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2405 lread.o: sysfile.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2406 lstream.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2407 lstream.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2408 lstream.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2409 lstream.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2410 lstream.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2411 lstream.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2412 lstream.o: lstream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2413 lstream.o: sysfile.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2414 macros.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2415 macros.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2416 macros.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2417 macros.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2418 macros.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2419 macros.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2420 macros.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2421 macros.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2422 macros.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2423 macros.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2424 macros.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2425 macros.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2426 macros.o: keymap.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2427 macros.o: macros.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2428 macros.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2429 macros.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2430 macros.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2431 macros.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2432 macros.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2433 macros.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2434 malloc.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2435 malloc.o: getpagesize.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2436 marker.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2437 marker.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2438 marker.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2439 marker.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2440 marker.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2441 md5.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2442 md5.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2443 md5.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2444 md5.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2445 md5.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2446 md5.o: insdel.h
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
2447 menubar-x.o: $(LWLIB_SRCDIR)/lwlib.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2448 menubar-x.o: EmacsFrame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2449 menubar-x.o: EmacsManager.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2450 menubar-x.o: EmacsShell.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2451 menubar-x.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2452 menubar-x.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2453 menubar-x.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2454 menubar-x.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2455 menubar-x.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2456 menubar-x.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2457 menubar-x.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2458 menubar-x.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2459 menubar-x.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2460 menubar-x.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2461 menubar-x.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2462 menubar-x.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2463 menubar-x.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2464 menubar-x.o: gui-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2465 menubar-x.o: opaque.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2466 menubar-x.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2467 menubar-x.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2468 menubar-x.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2469 menubar-x.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2470 menubar-x.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2471 menubar-x.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2472 menubar-x.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2473 menubar.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2474 menubar.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2475 menubar.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2476 menubar.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2477 menubar.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2478 menubar.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2479 menubar.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2480 menubar.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2481 menubar.o: menubar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2482 menubar.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2483 menubar.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2484 menubar.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2485 menubar.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2486 menubar.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2487 minibuf.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2488 minibuf.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2489 minibuf.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2490 minibuf.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2491 minibuf.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2492 minibuf.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2493 minibuf.o: console-stream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2494 minibuf.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2495 minibuf.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2496 minibuf.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2497 minibuf.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2498 minibuf.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2499 minibuf.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2500 minibuf.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2501 minibuf.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2502 minibuf.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2503 minibuf.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2504 minibuf.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2505 minibuf.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2506 minibuf.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2507 mocklisp.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2508 mocklisp.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2509 mocklisp.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2510 mocklisp.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2511 mocklisp.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2512 msdos.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2513 nas.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2514 nas.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2515 nas.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2516 objects-tty.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2517 objects-tty.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2518 objects-tty.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2519 objects-tty.o: console-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2520 objects-tty.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2521 objects-tty.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2522 objects-tty.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2523 objects-tty.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2524 objects-tty.o: objects-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2525 objects-tty.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2526 objects-tty.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2527 objects-tty.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2528 objects-x.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2529 objects-x.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2530 objects-x.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2531 objects-x.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2532 objects-x.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2533 objects-x.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2534 objects-x.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2535 objects-x.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2536 objects-x.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2537 objects-x.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2538 objects-x.o: objects-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2539 objects-x.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2540 objects-x.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2541 objects-x.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2542 objects.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2543 objects.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2544 objects.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2545 objects.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2546 objects.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2547 objects.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2548 objects.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2549 objects.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2550 objects.o: elhash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2551 objects.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2552 objects.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2553 objects.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2554 objects.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2555 objects.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2556 objects.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2557 objects.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2558 objects.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2559 objects.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2560 opaque.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2561 opaque.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2562 opaque.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2563 opaque.o: opaque.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2564 print.o: backtrace.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2565 print.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2566 print.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2567 print.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2568 print.o: bytecode.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2569 print.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2570 print.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2571 print.o: console-stream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2572 print.o: console-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2573 print.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2574 print.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2575 print.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2576 print.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2577 print.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2578 print.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2579 print.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2580 print.o: lstream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2581 print.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2582 print.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2583 print.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2584 print.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2585 process.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2586 process.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2587 process.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2588 process.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2589 process.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2590 process.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2591 process.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2592 process.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2593 process.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2594 process.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2595 process.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2596 process.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2597 process.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2598 process.o: lstream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2599 process.o: opaque.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2600 process.o: paths.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2601 process.o: process.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2602 process.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2603 process.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2604 process.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2605 process.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2606 process.o: sysfile.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2607 process.o: sysproc.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2608 process.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2609 process.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2610 process.o: syswait.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2611 process.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2612 process.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2613 profile.o: backtrace.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2614 profile.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2615 profile.o: bytecode.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2616 profile.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2617 profile.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2618 profile.o: hash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2619 profile.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2620 pure.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2621 pure.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2622 pure.o: dynarr.h
104
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 102
diff changeset
2623 pure.o: puresize.h puresize_adjust.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2624 ralloc.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2625 ralloc.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2626 ralloc.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2627 ralloc.o: getpagesize.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2628 rangetab.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2629 rangetab.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2630 rangetab.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2631 realpath.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2632 redisplay-output.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2633 redisplay-output.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2634 redisplay-output.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2635 redisplay-output.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2636 redisplay-output.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2637 redisplay-output.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2638 redisplay-output.o: debug.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2639 redisplay-output.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2640 redisplay-output.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2641 redisplay-output.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2642 redisplay-output.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2643 redisplay-output.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2644 redisplay-output.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2645 redisplay-output.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2646 redisplay-output.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2647 redisplay-output.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2648 redisplay-output.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2649 redisplay-output.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2650 redisplay-output.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2651 redisplay-tty.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2652 redisplay-tty.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2653 redisplay-tty.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2654 redisplay-tty.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2655 redisplay-tty.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2656 redisplay-tty.o: console-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2657 redisplay-tty.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2658 redisplay-tty.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2659 redisplay-tty.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2660 redisplay-tty.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2661 redisplay-tty.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2662 redisplay-tty.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2663 redisplay-tty.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2664 redisplay-tty.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2665 redisplay-tty.o: lstream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2666 redisplay-tty.o: objects-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2667 redisplay-tty.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2668 redisplay-tty.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2669 redisplay-tty.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2670 redisplay-tty.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2671 redisplay-tty.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2672 redisplay-tty.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2673 redisplay-tty.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2674 redisplay-tty.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2675 redisplay-tty.o: window.h
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
2676 redisplay-x.o: $(LWLIB_SRCDIR)/lwlib.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2677 redisplay-x.o: EmacsFrame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2678 redisplay-x.o: EmacsFrameP.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2679 redisplay-x.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2680 redisplay-x.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2681 redisplay-x.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2682 redisplay-x.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2683 redisplay-x.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2684 redisplay-x.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2685 redisplay-x.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2686 redisplay-x.o: debug.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2687 redisplay-x.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2688 redisplay-x.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2689 redisplay-x.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2690 redisplay-x.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2691 redisplay-x.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2692 redisplay-x.o: glyphs-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2693 redisplay-x.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2694 redisplay-x.o: objects-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2695 redisplay-x.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2696 redisplay-x.o: paths.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2697 redisplay-x.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2698 redisplay-x.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2699 redisplay-x.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2700 redisplay-x.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2701 redisplay-x.o: sysproc.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2702 redisplay-x.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2703 redisplay-x.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2704 redisplay-x.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2705 redisplay-x.o: xgccache.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2706 redisplay-x.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2707 redisplay-x.o: xintrinsicp.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2708 redisplay-x.o: xmprimitivep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2709 redisplay.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2710 redisplay.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2711 redisplay.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2712 redisplay.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2713 redisplay.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2714 redisplay.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2715 redisplay.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2716 redisplay.o: debug.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2717 redisplay.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2718 redisplay.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2719 redisplay.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2720 redisplay.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2721 redisplay.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2722 redisplay.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2723 redisplay.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2724 redisplay.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2725 redisplay.o: menubar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2726 redisplay.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2727 redisplay.o: process.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2728 redisplay.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2729 redisplay.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2730 redisplay.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2731 redisplay.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2732 redisplay.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2733 regex.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2734 regex.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2735 regex.o: bufslots.h
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
2736 regex.o: chartab.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2737 regex.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2738 regex.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2739 regex.o: regex.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2740 regex.o: syntax.h
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
2741 scrollbar-x.o: $(LWLIB_SRCDIR)/lwlib.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2742 scrollbar-x.o: EmacsFrame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2743 scrollbar-x.o: EmacsManager.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2744 scrollbar-x.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2745 scrollbar-x.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2746 scrollbar-x.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2747 scrollbar-x.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2748 scrollbar-x.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2749 scrollbar-x.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2750 scrollbar-x.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2751 scrollbar-x.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2752 scrollbar-x.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2753 scrollbar-x.o: glyphs-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2754 scrollbar-x.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2755 scrollbar-x.o: gui-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2756 scrollbar-x.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2757 scrollbar-x.o: scrollbar-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2758 scrollbar-x.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2759 scrollbar-x.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2760 scrollbar-x.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2761 scrollbar-x.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2762 scrollbar-x.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2763 scrollbar.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2764 scrollbar.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2765 scrollbar.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2766 scrollbar.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2767 scrollbar.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2768 scrollbar.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2769 scrollbar.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2770 scrollbar.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2771 scrollbar.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2772 scrollbar.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2773 scrollbar.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2774 scrollbar.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2775 scrollbar.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2776 scrollbar.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2777 scrollbar.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2778 scrollbar.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2779 scrollbar.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2780 search.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2781 search.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2782 search.o: bufslots.h
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
2783 search.o: chartab.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2784 search.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2785 search.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2786 search.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2787 search.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2788 search.o: opaque.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2789 search.o: regex.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2790 search.o: syntax.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2791 signal.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2792 signal.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2793 signal.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2794 signal.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2795 signal.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2796 signal.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2797 signal.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2798 signal.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2799 signal.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2800 signal.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2801 signal.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2802 signal.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2803 signal.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2804 signal.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2805 sound.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2806 sound.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2807 sound.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2808 sound.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2809 sound.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2810 sound.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2811 sound.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2812 sound.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2813 sound.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2814 sound.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2815 sound.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2816 sound.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2817 sound.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2818 specifier.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2819 specifier.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2820 specifier.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2821 specifier.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2822 specifier.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2823 specifier.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2824 specifier.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2825 specifier.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2826 specifier.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2827 specifier.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2828 specifier.o: opaque.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2829 specifier.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2830 specifier.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2831 specifier.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2832 specifier.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2833 specifier.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2834 strftime.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2835 strftime.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2836 strftime.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2837 sunOS-fix.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2838 sunplay.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2839 sunplay.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2840 sunplay.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2841 sunplay.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2842 sunpro.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2843 sunpro.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2844 sunpro.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2845 symbols.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2846 symbols.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2847 symbols.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2848 symbols.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2849 symbols.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2850 symbols.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2851 symbols.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2852 syntax.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2853 syntax.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2854 syntax.o: bufslots.h
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 36
diff changeset
2855 syntax.o: chartab.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2856 syntax.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2857 syntax.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2858 syntax.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2859 syntax.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2860 syntax.o: syntax.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2861 sysdep.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2862 sysdep.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2863 sysdep.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2864 sysdep.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2865 sysdep.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2866 sysdep.o: console-stream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2867 sysdep.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2868 sysdep.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2869 sysdep.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2870 sysdep.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2871 sysdep.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2872 sysdep.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2873 sysdep.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2874 sysdep.o: process.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2875 sysdep.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2876 sysdep.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2877 sysdep.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2878 sysdep.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2879 sysdep.o: sysdir.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2880 sysdep.o: sysfile.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2881 sysdep.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2882 sysdep.o: syswait.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2883 sysdep.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2884 sysdep.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2885 sysdep.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2886 termcap.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2887 termcap.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2888 termcap.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2889 termcap.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2890 termcap.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2891 termcap.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2892 terminfo.o: config.h
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 140
diff changeset
2893 toolbar-x.o: $(LWLIB_SRCDIR)/lwlib.h
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2894 toolbar-x.o: EmacsFrame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2895 toolbar-x.o: EmacsFrameP.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2896 toolbar-x.o: EmacsManager.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2897 toolbar-x.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2898 toolbar-x.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2899 toolbar-x.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2900 toolbar-x.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2901 toolbar-x.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2902 toolbar-x.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2903 toolbar-x.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2904 toolbar-x.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2905 toolbar-x.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2906 toolbar-x.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2907 toolbar-x.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2908 toolbar-x.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2909 toolbar-x.o: glyphs-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2910 toolbar-x.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2911 toolbar-x.o: objects-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2912 toolbar-x.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2913 toolbar-x.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2914 toolbar-x.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2915 toolbar-x.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2916 toolbar-x.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2917 toolbar-x.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2918 toolbar-x.o: xgccache.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2919 toolbar-x.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2920 toolbar-x.o: xintrinsicp.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2921 toolbar-x.o: xmprimitivep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2922 toolbar.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2923 toolbar.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2924 toolbar.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2925 toolbar.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2926 toolbar.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2927 toolbar.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2928 toolbar.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2929 toolbar.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2930 toolbar.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2931 toolbar.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2932 toolbar.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2933 toolbar.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2934 toolbar.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2935 toolbar.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2936 toolbar.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2937 toolbar.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2938 tooltalk.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2939 tooltalk.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2940 tooltalk.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2941 tooltalk.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2942 tooltalk.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2943 tooltalk.o: elhash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2944 tooltalk.o: process.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2945 tooltalk.o: tooltalk.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2946 tparam.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2947 undo.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2948 undo.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2949 undo.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2950 undo.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2951 undo.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2952 undo.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2953 vm-limit.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2954 vm-limit.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2955 vm-limit.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2956 vm-limit.o: mem-limits.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2957 window.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2958 window.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2959 window.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2960 window.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2961 window.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2962 window.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2963 window.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2964 window.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2965 window.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2966 window.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2967 window.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2968 window.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2969 window.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2970 window.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2971 window.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2972 window.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2973 window.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2974 window.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2975 window.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2976 xgccache.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2977 xgccache.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2978 xgccache.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2979 xgccache.o: hash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2980 xgccache.o: xgccache.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2981 xmu.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2982 xselect.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2983 xselect.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2984 xselect.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2985 xselect.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2986 xselect.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2987 xselect.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2988 xselect.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2989 xselect.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2990 xselect.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2991 xselect.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2992 xselect.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2993 xselect.o: objects-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2994 xselect.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2995 xselect.o: opaque.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2996 xselect.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2997 xselect.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2998 xselect.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2999 xselect.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3000 xselect.o: xintrinsic.h