annotate src/Makefile @ 1:c0c6a60d29db

Added tag r19-14 for changeset 376386a54a3c
author cvs
date Mon, 13 Aug 2007 08:45:53 +0200
parents 376386a54a3c
children
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 dot = .
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 lispdir = ${srcdir}/$(dot)$(dot)/lisp/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 libsrc = $(dot)$(dot)/lib-src/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 etcdir = $(dot)$(dot)/etc/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 srcdir=/m/xemacs-19.14/src
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 CC=gcc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 CPP=gcc -E -I/usr/i486-linuxaout/include -I/m/xpm-3.4h/lib -I/usr/X11R6/include
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 CFLAGS=-bi486-linuxaout -O4 -m486 -malign-functions=2 -malign-jumps=2 -malign-loops=2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 C_SWITCH_SYSTEM= -DFUNCPROTO=11 -DNARROWPROTO -D_BSD_SOURCE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 LN_S=ln -s
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 native_sound_lib=
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 SHELL=/bin/sh
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 VPATH=/m/xemacs-19.14/src
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 STARTFILES = pre-crt0.o /usr/lib/crt1.o /usr/lib/crti.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 ILD=/cadillac1/code/bin.sun4/ild
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 PURIFY_PROG=/local/bin/purify
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 QUANTIFY_PROG=/local/bin/quantify -windows=no -record-data=no
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 PURECOV_PROG=/local/bin/purecov
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 MYCPPFLAGS=
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 LOCALCPP=
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 SHORT=
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 JPEG_LIBS = -ljpeg
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 CPPFLAGS=-Demacs -DHAVE_CONFIG_H $(MYCPPFLAG) -I. -I${srcdir} -DFUNCPROTO=11 -DNARROWPROTO -D_BSD_SOURCE -I/usr/i486-linuxaout/include -I/m/xpm-3.4h/lib -I/usr/X11R6/include $(LIBX11_INCLUDES)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 ALL_CFLAGS=$(CPPFLAGS) ${CFLAGS}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 LDFLAGS = -L/usr/i486-linuxaout -L/lib-aout -L/m/xpm-3.4h/lib -L/usr/X11R6/lib -L. $(LIBX11_LDFLAGS)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 .c.o:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 $(CC) -c $(ALL_CFLAGS) $<
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 LWLIBSRCDIR = ${srcdir}/$(dot)$(dot)/lwlib
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 XMU_LIB = -lXmu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 LWLIBBUILDDIR = $(dot)$(dot)/lwlib
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 LIBX11_LDFLAGS = -L$(LWLIBBUILDDIR)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 LIBX11_INCLUDES = -I$(LWLIBSRCDIR)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 XPM_LIBS = -lXpm
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 XFACE_LIBS = -lcompface
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 USAGE_TRACKING_LIBS =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 TOOLKIT_LIBS = -lXaw
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 LIBX11_LIBS = -llw $(TOOLKIT_LIBS) $(XPM_LIBS) $(XFACE_LIBS) $(JPEG_LIBS) -lpng -lz $(USAGE_TRACKING_LIBS)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 LIBW=
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 LIBX= $(LIBX11_LIBS) $(XMU_LIB) -lXt -lSM -lICE $(LIBW) -lXext -lX11
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 GNULIB_VAR =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 STARTFLAGS =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 LD= $(CC) -nostdlib
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 objs= abbrev.o alloc.o blocktype.o buffer.o bytecode.o callint.o callproc.o casefiddle.o casetab.o cmdloop.o cmds.o console.o console-stream.o data.o database.o device.o dialog.o dired.o doc.o doprnt.o dynarr.o editfns.o elhash.o emacs.o eval.o events.o event-stream.o event-unixoid.o extents.o faces.o fileio.o filelock.o filemode.o floatfns.o fns.o font-lock.o frame.o general.o getloadavg.o dgif_lib.o gif_err.o gifalloc.o glyphs.o gui.o hash.o indent.o inline.o insdel.o intl.o keymap.o lread.o lstream.o macros.o marker.o md5.o menubar.o minibuf.o objects.o opaque.o print.o process.o profile.o pure.o rangetab.o realpath.o redisplay.o redisplay-output.o regex.o scrollbar.o search.o signal.o sound.o linuxplay.o specifier.o strftime.o symbols.o syntax.o sysdep.o toolbar.o console-tty.o device-tty.o event-tty.o frame-tty.o objects-tty.o redisplay-tty.o cm.o undo.o unexelf.o console-x.o device-x.o dialog-x.o event-Xt.o frame-x.o glyphs-x.o gui-x.o menubar-x.o objects-x.o redisplay-x.o scrollbar-x.o toolbar-x.o xgccache.o xselect.o window.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 termcapobjs = tparam.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 rallocobjs = ralloc.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 rallocdocsrc = ralloc.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 mallocobjs = gmalloc.o vm-limit.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 mallocdocsrc =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 allocaobjs =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 otherobjs= $(termcapobjs) lastfile.o $(mallocobjs) $(rallocobjs) $(allocaobjs) EmacsFrame.o EmacsShell.o TopLevelEmacsShell.o TransientEmacsShell.o EmacsManager.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 lisp= ${lispdir}paths.el ${lispdir}prim/loadup.el ${lispdir}prim/subr.elc ${lispdir}prim/cmdloop.elc ${lispdir}utils/text-props.elc ${lispdir}prim/gui.elc ${lispdir}prim/mouse.elc ${lispdir}prim/mode-motion.elc ${lispdir}prim/keymap.elc ${lispdir}prim/syntax.elc ${lispdir}prim/minibuf.elc ${lispdir}prim/faces.elc ${lispdir}prim/objects.elc ${lispdir}prim/process.elc ${lispdir}prim/keydefs.elc ${lispdir}prim/device.elc ${lispdir}prim/obsolete.elc ${lispdir}prim/glyphs.elc ${lispdir}prim/extents.elc ${lispdir}prim/backquote.elc ${lispdir}prim/events.elc ${lispdir}prim/console.elc ${lispdir}utils/map-ynp.elc ${lispdir}prim/modeline.elc ${lispdir}prim/profile.elc ${lispdir}modes/list-mode.elc ${lispdir}utils/derived.elc ${lispdir}cl/cl.elc ${lispdir}cl/cl-defs.elc ${lispdir}prim/undo-stack.elc ${lispdir}prim/simple.elc ${lispdir}prim/help.elc ${lispdir}prim/files.elc ${lispdir}utils/lib-complete.elc ${lispdir}prim/indent.elc ${lispdir}prim/frame.elc ${lispdir}prim/toolbar.elc ${lispdir}prim/format.elc ${lispdir}prim/window.elc ${lispdir}prim/startup.elc ${lispdir}prim/lisp.elc ${lispdir}prim/page.elc ${lispdir}prim/register.elc ${lispdir}iso/iso8859-1.elc ${lispdir}prim/paragraphs.elc ${lispdir}modes/lisp-mode.elc ${lispdir}modes/text-mode.elc ${lispdir}prim/fill.elc ${lispdir}prim/isearch-mode.elc ${lispdir}prim/misc.elc ${lispdir}modes/cc-mode.elc ${lispdir}packages/vc-hooks.elc ${lispdir}prim/replace.elc ${lispdir}prim/specifier.elc ${lispdir}modes/auto-show.elc ${lispdir}prim/loaddefs.elc ${lispdir}term/tty-init.elc ${lispdir}bytecomp/bytecomp-runtime.elc ${lispdir}prim/float-sup.elc ${lispdir}prim/itimer.elc ${lispdir}ediff/ediff-hook.elc ${lispdir}packages/fontl-hooks.elc ${lispdir}prim/scrollbar.elc ${lispdir}prim/buffer.elc ${lispdir}prim/menubar.elc ${lispdir}packages/buff-menu.elc ${lispdir}prim/dialog.elc ${lispdir}modes/abbrev.elc ${lispdir}x11/x-menubar.elc ${lispdir}x11/x-faces.elc ${lispdir}x11/x-iso8859-1.elc ${lispdir}x11/x-mouse.elc ${lispdir}x11/x-select.elc ${lispdir}x11/x-scrollbar.elc ${lispdir}x11/x-toolbar.elc ${lispdir}x11/x-misc.elc ${lispdir}x11/x-init.elc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 otherlisp= ${lispdir}bytecomp/bytecomp.elc ${lispdir}bytecomp/byte-optimize.elc ${lispdir}utils/advice.elc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 LIBES = $(LIBX) -ltermcap -lcurses $(GNULIB_VAR) -lm -lgcc -lc -lgcc /usr/lib/crtn.o $(GNULIB_VAR)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 all: xemacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 LOADPATH = EMACSLOADPATH="${lispdir}prim"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 DUMPENV = $(LOADPATH)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 release: temacs ${lisp} ${libsrc}DOC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 -if [ -w ${srcdir}/../lisp ]; then w=`pwd`; cd ${srcdir}; $${w}/temacs -batch -l inc-vers; else true; fi
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 $(DUMPENV) ./temacs -batch -l loadup.el dump
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 touch release
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 xemacs: temacs ${libsrc}DOC ${lisp}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 $(DUMPENV) ./temacs -batch -l loadup.el dump
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 xemacs-no-site-file: temacs ${libsrc}DOC ${lisp}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 $(DUMPENV) ./temacs -batch -l loadup.el dump no-site-file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 obj_src = $(objs:.o=.c)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 ${libsrc}DOC: ${libsrc}make-docfile ${obj_src} ${lisp}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 rm -f ${libsrc}DOC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 ${libsrc}make-docfile -d ${srcdir} ${obj_src} ${mallocdocsrc} ${rallocdocsrc} ${lispdir}version.el ${lisp} > ${libsrc}DOC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 dump_elcs: dump-elcs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 dump-elcs: temacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 $(LOADPATH) ./temacs -batch -l ../prim/update-elc.el $(lisp) $(otherlisp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 ${libsrc}make-docfile:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 cd ${libsrc}; ${MAKE} ${MFLAGS} make-docfile
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 LINT.c=$(LINT) $(LINTFLAGS) $(LINTINCLUDES)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 LINTFILES= $(objs:.o=.ln)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 LINTINCLUDES = -Demacs -DHAVE_CONFIG_H $(MYCPPFLAG) -I. -I${srcdir} -DFUNCPROTO=11 -DNARROWPROTO -D_BSD_SOURCE -I/usr/i486-linuxaout/include -I/m/xpm-3.4h/lib -I/usr/X11R6/include $(LIBX11_INCLUDES)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 LINTFLAGS= -fd -m -p -s -u -v -x
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 lint: $(LINTFILES)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 $(LINT.c) $(LINTFILES)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 force:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 $(LWLIBBUILDDIR)/liblw.a: force
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 cd ${LWLIBBUILDDIR}; ${MAKE} ${MFLAGS}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 temacs_deps: $(LOCALCPP) $(SHORT) $(STARTFILES) ${objs} ${otherobjs} $(LWLIBBUILDDIR)/liblw.a prefix-args
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 temacs: $(LOCALCPP) $(SHORT) $(STARTFILES) ${objs} ${otherobjs} $(LWLIBBUILDDIR)/liblw.a prefix-args
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 $(LD) `./prefix-args -Xlinker ${STARTFLAGS} ${LDFLAGS} ` -o $@ ${STARTFILES} ${objs} ${otherobjs} ${LIBES}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 cemacs: $(LOCALCPP) $(SHORT) $(STARTFILES) ${objs} ${otherobjs} $(LWLIBBUILDDIR)/liblw.a prefix-args
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 $(LD) $(ENERGIZEP) `./prefix-args -Xlinker ${STARTFLAGS} ${LDFLAGS} ` -o $@ ${STARTFILES} ${objs} ${otherobjs} ${LIBES}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 puremacs: $(LOCALCPP) $(SHORT) $(STARTFILES) ${objs} ${otherobjs} $(LWLIBBUILDDIR)/liblw.a prefix-args
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 $(PURIFY_PROG) $(LD) `./prefix-args -Xlinker ${STARTFLAGS} ${LDFLAGS} ` -o $@ ${STARTFILES} ${objs} ${otherobjs} ${LIBES}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 quantmacs: $(LOCALCPP) $(SHORT) $(STARTFILES) ${objs} ${otherobjs} $(LWLIBBUILDDIR)/liblw.a prefix-args
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 $(QUANTIFY_PROG) $(LD) `./prefix-args -Xlinker ${STARTFLAGS} ${LDFLAGS} ` -o $@ ${STARTFILES} ${objs} ${otherobjs} ${LIBES}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 covmacs: $(LOCALCPP) $(SHORT) $(STARTFILES) ${objs} ${otherobjs} $(LWLIBBUILDDIR)/liblw.a prefix-args
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 $(PURECOV_PROG) $(LD) `./prefix-args -Xlinker ${STARTFLAGS} ${LDFLAGS} ` -o $@ ${STARTFILES} ${objs} ${otherobjs} ${LIBES}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 TopLevelEmacsShell.o : ${srcdir}/EmacsShell-sub.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 $(CC) -c $(ALL_CFLAGS) -DDEFINE_TOP_LEVEL_EMACS_SHELL ${srcdir}/EmacsShell-sub.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 mv EmacsShell-sub.o TopLevelEmacsShell.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 TransientEmacsShell.o : ${srcdir}/EmacsShell-sub.c TopLevelEmacsShell.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 $(CC) -c $(ALL_CFLAGS) -DDEFINE_TRANSIENT_EMACS_SHELL ${srcdir}/EmacsShell-sub.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 mv EmacsShell-sub.o TransientEmacsShell.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 prefix-args: ${srcdir}/prefix-args.c config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 $(CC) $(ALL_CFLAGS) ${srcdir}/prefix-args.c -o prefix-args
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 CPP = $(CC) -E
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 config.h: ${srcdir}/config.h.in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 @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
106 @echo "Consult the file \`INSTALL' for instructions for building Emacs."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 exit 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 paths.h: ${srcdir}/paths.h.in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 @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
110 @echo "Consult the file \`INSTALL' for instructions for building Emacs."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 exit 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 Emacs.ad.h: ${srcdir}/${etcdir}Emacs.ad
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 @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
114 @echo "Consult the file \`INSTALL' for instructions for building Emacs."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 exit 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 ${libsrc}emacstool: ${libsrc}emacstool.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 cd ${libsrc}; ${MAKE} ${MFLAGS} emacstool
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 mostlyclean:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 rm -f temacs puremacs quantmacs prefix-args xmakefile* core depend.* \#* *.o
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 rm -f ${libsrc}DOC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 clean: mostlyclean
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 rm -f xemacs libextcli*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 distclean: clean versionclean
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 rm -f config.h paths.h Emacs.ad.h Makefile Makefile.in .pure
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 realclean: distclean
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 rm -f TAGS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 versionclean:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 -rm -f xemacs emacs-* ${libsrc}DOC*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 extraclean: realclean
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 -rm -f *~ \#* m/?*~ s/?*~
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 SOURCES = *.[chm] *.pswm [sm]/?* COPYING paths.h.in Makefile.in.in config.h.in README COPYING ChangeLog vms.pp-trans
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 unlock:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 chmod u+w $(SOURCES)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 relock:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 chmod -w $(SOURCES)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 .c.dep:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 $(CC) -MM $(ALL_CFLAGS) $< > $*.dep
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 .SUFFIXES: .dep
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 obj_dep = $(objs:.o=.dep)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 gnu-depend: $(obj_dep)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 cat $(obj_dep) | sh ${libsrc}process-gnu-depends.sh > depend.out
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 depend:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 : > depend.tmp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 makedepend -f depend.tmp -Dsubprocesses -DMOCKLISP_SUPPORT -DHAVE_X_WINDOWS -- $(CPPFLAGS) $(ALL_CFLAGS) -- *.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 sh ${libsrc}process-depends.sh < depend.tmp > depend.out
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 sgiplay.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 sgiplay.o: libst.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 unexconvex.o: getpagesize.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 unexec.o: getpagesize.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 unexaix.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 unexalpha.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 unexapollo.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 unexconvex.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 unexec.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 unexelf.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 unexenix.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 unexfreebsd.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 unexhp9k3.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 unexhp9k800.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 unexmips.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 unexsunos4.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 EmacsFrame.o: $(LWLIBSRCDIR)/lwlib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 EmacsFrame.o: EmacsFrame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 EmacsFrame.o: EmacsFrameP.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 EmacsFrame.o: EmacsManager.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 EmacsFrame.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 EmacsFrame.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 EmacsFrame.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 EmacsFrame.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 EmacsFrame.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 EmacsFrame.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 EmacsFrame.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 EmacsFrame.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 EmacsFrame.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 EmacsFrame.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 EmacsFrame.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 EmacsFrame.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 EmacsFrame.o: glyphs-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 EmacsFrame.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 EmacsFrame.o: objects-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 EmacsFrame.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 EmacsFrame.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 EmacsFrame.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 EmacsFrame.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 EmacsFrame.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 EmacsFrame.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 EmacsFrame.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 EmacsFrame.o: xintrinsicp.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 EmacsFrame.o: xmprimitivep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 EmacsFrame.o: xmu.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 EmacsManager.o: EmacsManager.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 EmacsManager.o: EmacsManagerP.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 EmacsManager.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 EmacsManager.o: xintrinsicp.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 EmacsManager.o: xmmanagerp.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 EmacsShell-sub.o: EmacsShell.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 EmacsShell-sub.o: EmacsShellP.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 EmacsShell-sub.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 EmacsShell-sub.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 EmacsShell-sub.o: xintrinsicp.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 EmacsShell.o: EmacsShell.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 EmacsShell.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 EmacsShell.o: xintrinsicp.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 abbrev.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 abbrev.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 abbrev.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 abbrev.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 abbrev.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 abbrev.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 abbrev.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 abbrev.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 abbrev.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 abbrev.o: syntax.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 abbrev.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 alloc.o: backtrace.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 alloc.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 alloc.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 alloc.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 alloc.o: bytecode.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 alloc.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 alloc.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 alloc.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 alloc.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 alloc.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 alloc.o: elhash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 alloc.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 alloc.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 alloc.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 alloc.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 alloc.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 alloc.o: puresize.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 alloc.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 alloc.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 alloc.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 alloc.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 alloc.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 alloc.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 alloca.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 blocktype.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 blocktype.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 blocktype.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 buffer.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 buffer.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 buffer.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 buffer.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 buffer.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 buffer.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 buffer.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 buffer.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 buffer.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 buffer.o: elhash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 buffer.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 buffer.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 buffer.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 buffer.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 buffer.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 buffer.o: process.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 buffer.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 buffer.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 buffer.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 buffer.o: syntax.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 buffer.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 buffer.o: sysfile.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 buffer.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 buffer.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 bytecode.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 bytecode.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 bytecode.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 bytecode.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 bytecode.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 bytecode.o: syntax.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 callint.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 callint.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 callint.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 callint.o: bytecode.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 callint.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 callint.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 callint.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 callint.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 callint.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 callint.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 callint.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 callint.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 callint.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 callproc.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 callproc.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 callproc.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 callproc.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 callproc.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 callproc.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 callproc.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 callproc.o: lstream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 callproc.o: paths.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 callproc.o: process.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 callproc.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 callproc.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 callproc.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 callproc.o: sysfile.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 callproc.o: sysproc.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 callproc.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 callproc.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 callproc.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 casefiddle.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 casefiddle.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 casefiddle.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 casefiddle.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 casefiddle.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 casefiddle.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 casefiddle.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 casefiddle.o: syntax.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 casetab.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 casetab.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 casetab.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 casetab.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 casetab.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 casetab.o: opaque.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 cm.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 cm.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 cm.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 cm.o: console-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 cm.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 cm.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 cm.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 cm.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 cm.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 cm.o: lstream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 cm.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 cm.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 cm.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 cm.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 cm.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 cmdloop.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 cmdloop.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 cmdloop.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 cmdloop.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 cmdloop.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 cmdloop.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 cmdloop.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 cmdloop.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 cmdloop.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 cmdloop.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 cmdloop.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 cmdloop.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 cmdloop.o: macros.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 cmdloop.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 cmdloop.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 cmdloop.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 cmdloop.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 cmdloop.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 cmdloop.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 cmds.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 cmds.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 cmds.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 cmds.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 cmds.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 cmds.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 cmds.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 cmds.o: syntax.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 console-stream.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 console-stream.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 console-stream.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 console-stream.o: console-stream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 console-stream.o: console-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 console-stream.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 console-stream.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 console-stream.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 console-stream.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 console-stream.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 console-stream.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 console-stream.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 console-stream.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 console-stream.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 console-stream.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 console-stream.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 console-stream.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 console-stream.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 console-stream.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 console-tty.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 console-tty.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 console-tty.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 console-tty.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 console-tty.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 console-tty.o: console-stream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 console-tty.o: console-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 console-tty.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 console-tty.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 console-tty.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 console-tty.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 console-tty.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 console-tty.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 console-tty.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 console-tty.o: lstream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 console-tty.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 console-tty.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 console-tty.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 console-tty.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 console-tty.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 console-tty.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 console-tty.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 console-x.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 console-x.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 console-x.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 console-x.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 console-x.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 console-x.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 console-x.o: process.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 console-x.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409 console-x.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 console.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411 console.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 console.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 console.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 console.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 console.o: console-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 console.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 console.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 console.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 console.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 console.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 console.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422 console.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 console.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 console.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 console.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 console.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 console.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428 console.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 console.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 data.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 data.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 data.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433 data.o: bytecode.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434 data.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 data.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 data.o: sysfloat.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 database.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438 database.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 database.o: database.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 database.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 debug.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 debug.o: bytecode.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 debug.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 debug.o: debug.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 debug.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 device-tty.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 device-tty.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 device-tty.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 device-tty.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450 device-tty.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 device-tty.o: console-stream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452 device-tty.o: console-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453 device-tty.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 device-tty.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 device-tty.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 device-tty.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 device-tty.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 device-tty.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459 device-tty.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460 device-tty.o: lstream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 device-tty.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 device-tty.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 device-tty.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464 device-tty.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465 device-tty.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 device-tty.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467 device-tty.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 device-x.o: $(LWLIBSRCDIR)/lwlib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469 device-x.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 device-x.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471 device-x.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472 device-x.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473 device-x.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 device-x.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475 device-x.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 device-x.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 device-x.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 device-x.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479 device-x.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480 device-x.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 device-x.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482 device-x.o: glyphs-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 device-x.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484 device-x.o: objects-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 device-x.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486 device-x.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487 device-x.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488 device-x.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 device-x.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490 device-x.o: sysfile.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491 device-x.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 device-x.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493 device-x.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 device-x.o: xgccache.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495 device-x.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496 device-x.o: xintrinsicp.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 device-x.o: xmu.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498 device.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499 device.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500 device.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501 device.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502 device.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503 device.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 device.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505 device.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506 device.o: elhash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507 device.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508 device.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 device.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 device.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511 device.o: keymap.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512 device.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513 device.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 device.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 device.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516 device.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 device.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 device.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519 dgif_lib.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520 dgif_lib.o: gif_lib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 dialog-x.o: $(LWLIBSRCDIR)/lwlib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522 dialog-x.o: EmacsFrame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523 dialog-x.o: EmacsManager.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524 dialog-x.o: EmacsShell.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 dialog-x.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 dialog-x.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 dialog-x.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528 dialog-x.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 dialog-x.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 dialog-x.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 dialog-x.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532 dialog-x.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533 dialog-x.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 dialog-x.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 dialog-x.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 dialog-x.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 dialog-x.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538 dialog-x.o: gui-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539 dialog-x.o: opaque.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540 dialog-x.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541 dialog-x.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542 dialog-x.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543 dialog-x.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544 dialog-x.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545 dialog-x.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546 dialog-x.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547 dialog.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548 dialog.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549 dialog.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550 dired.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551 dired.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552 dired.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 dired.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554 dired.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555 dired.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556 dired.o: elhash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557 dired.o: regex.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558 dired.o: sysdir.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 dired.o: sysfile.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560 doc.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561 doc.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 doc.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563 doc.o: bytecode.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564 doc.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565 doc.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566 doc.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567 doc.o: keymap.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568 doc.o: sysfile.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569 doprnt.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570 doprnt.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571 doprnt.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572 doprnt.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573 doprnt.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574 doprnt.o: lstream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575 dynarr.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576 dynarr.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 dynarr.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578 ecrt0.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579 editfns.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580 editfns.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581 editfns.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582 editfns.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 editfns.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584 editfns.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585 editfns.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586 editfns.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587 editfns.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
588 editfns.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
589 editfns.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590 editfns.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591 editfns.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592 editfns.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593 editfns.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594 editfns.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595 editfns.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596 editfns.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597 editfns.o: syspwd.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598 editfns.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599 editfns.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600 editfns.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
601 elhash.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602 elhash.o: bytecode.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603 elhash.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
604 elhash.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
605 elhash.o: elhash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606 elhash.o: hash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
607 emacs.o: backtrace.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608 emacs.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609 emacs.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610 emacs.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611 emacs.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612 emacs.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613 emacs.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614 emacs.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615 emacs.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616 emacs.o: process.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617 emacs.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618 emacs.o: sysfile.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619 emacs.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620 emacs.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621 energize.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
622 epoch.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623 epoch.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624 epoch.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
625 epoch.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626 epoch.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627 epoch.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 epoch.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629 epoch.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630 epoch.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631 epoch.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632 epoch.o: objects-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633 epoch.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634 epoch.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635 epoch.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636 epoch.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637 epoch.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638 epoch.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639 eval.o: backtrace.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640 eval.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641 eval.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
642 eval.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
643 eval.o: bytecode.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
644 eval.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645 eval.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646 eval.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647 eval.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
648 eval.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649 eval.o: opaque.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650 event-Xt.o: $(LWLIBSRCDIR)/lwlib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651 event-Xt.o: Emacs.ad.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
652 event-Xt.o: EmacsFrame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
653 event-Xt.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
654 event-Xt.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
655 event-Xt.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
656 event-Xt.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657 event-Xt.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658 event-Xt.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659 event-Xt.o: console-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660 event-Xt.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661 event-Xt.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662 event-Xt.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663 event-Xt.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664 event-Xt.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665 event-Xt.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666 event-Xt.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667 event-Xt.o: objects-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668 event-Xt.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669 event-Xt.o: paths.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670 event-Xt.o: process.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671 event-Xt.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672 event-Xt.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
673 event-Xt.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674 event-Xt.o: sysproc.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675 event-Xt.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676 event-Xt.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677 event-Xt.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678 event-Xt.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679 event-Xt.o: xintrinsicp.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680 event-stream.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
681 event-stream.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
682 event-stream.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
683 event-stream.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
684 event-stream.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685 event-stream.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
686 event-stream.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
687 event-stream.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688 event-stream.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689 event-stream.o: elhash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690 event-stream.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691 event-stream.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692 event-stream.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693 event-stream.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694 event-stream.o: keymap.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695 event-stream.o: lstream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
696 event-stream.o: macros.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
697 event-stream.o: opaque.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
698 event-stream.o: process.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
699 event-stream.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
700 event-stream.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701 event-stream.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702 event-stream.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703 event-stream.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
704 event-stream.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
705 event-stream.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
706 event-tty.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707 event-tty.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
708 event-tty.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709 event-tty.o: console-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710 event-tty.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711 event-tty.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712 event-tty.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713 event-tty.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
714 event-tty.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715 event-tty.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716 event-tty.o: paths.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717 event-tty.o: process.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718 event-tty.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719 event-tty.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720 event-tty.o: sysproc.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721 event-tty.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
722 event-tty.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723 event-tty.o: syswait.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724 event-tty.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725 event-unixoid.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
726 event-unixoid.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
727 event-unixoid.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728 event-unixoid.o: console-stream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729 event-unixoid.o: console-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730 event-unixoid.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
731 event-unixoid.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732 event-unixoid.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
733 event-unixoid.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734 event-unixoid.o: paths.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
735 event-unixoid.o: process.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736 event-unixoid.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737 event-unixoid.o: sysproc.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
738 event-unixoid.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
739 event-unixoid.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740 events.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741 events.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742 events.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
743 events.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744 events.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
745 events.o: console-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
746 events.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
747 events.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
748 events.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
749 events.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
750 events.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
751 events.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
752 events.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
753 events.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
754 events.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
755 events.o: keymap.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
756 events.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
757 events.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
758 events.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
759 events.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
760 events.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
761 events.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762 events.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763 events.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
764 extents.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765 extents.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766 extents.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
767 extents.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
768 extents.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
769 extents.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770 extents.o: debug.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771 extents.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
772 extents.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
773 extents.o: elhash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
774 extents.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
775 extents.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
776 extents.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
777 extents.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
778 extents.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
779 extents.o: hash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
780 extents.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
781 extents.o: opaque.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
782 extents.o: process.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783 extents.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
784 extents.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
785 extents.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
786 extents.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
787 faces.o: EmacsFrame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
788 faces.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
789 faces.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
790 faces.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
791 faces.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
792 faces.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
793 faces.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
794 faces.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
795 faces.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
796 faces.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
797 faces.o: elhash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
798 faces.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
799 faces.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
800 faces.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
801 faces.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
802 faces.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
803 faces.o: hash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
804 faces.o: objects-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
805 faces.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
806 faces.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
807 faces.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
808 faces.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
809 faces.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
810 faces.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
811 faces.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
812 fileio.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
813 fileio.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
814 fileio.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
815 fileio.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
816 fileio.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
817 fileio.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
818 fileio.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
819 fileio.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
820 fileio.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
821 fileio.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
822 fileio.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
823 fileio.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
824 fileio.o: lstream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
825 fileio.o: paths.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
826 fileio.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
827 fileio.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
828 fileio.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
829 fileio.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
830 fileio.o: sysdir.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
831 fileio.o: sysfile.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
832 fileio.o: sysproc.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
833 fileio.o: syspwd.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
834 fileio.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
835 fileio.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
836 fileio.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
837 filelock.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
838 filelock.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
839 filelock.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
840 filelock.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
841 filelock.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
842 filelock.o: paths.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
843 filelock.o: sysdir.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
844 filelock.o: sysfile.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
845 filelock.o: syspwd.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
846 filemode.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
847 filemode.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
848 filemode.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
849 filemode.o: sysfile.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
850 floatfns.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
851 floatfns.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
852 floatfns.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
853 floatfns.o: sysfloat.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
854 fns.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
855 fns.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
856 fns.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
857 fns.o: bytecode.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
858 fns.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
859 fns.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
860 fns.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
861 fns.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
862 fns.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
863 fns.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
864 fns.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
865 fns.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
866 fns.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
867 fns.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
868 fns.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
869 fns.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
870 fns.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
871 fns.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
872 font-lock.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
873 font-lock.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
874 font-lock.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
875 font-lock.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
876 font-lock.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
877 font-lock.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
878 font-lock.o: syntax.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
879 frame-tty.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
880 frame-tty.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
881 frame-tty.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
882 frame-tty.o: console-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
883 frame-tty.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
884 frame-tty.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
885 frame-tty.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
886 frame-tty.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
887 frame-tty.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
888 frame-tty.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
889 frame-tty.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
890 frame-tty.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
891 frame-tty.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
892 frame-x.o: $(LWLIBSRCDIR)/lwlib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
893 frame-x.o: EmacsFrame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
894 frame-x.o: EmacsFrameP.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
895 frame-x.o: EmacsManager.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
896 frame-x.o: EmacsShell.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
897 frame-x.o: ExternalShell.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
898 frame-x.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
899 frame-x.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
900 frame-x.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
901 frame-x.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
902 frame-x.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
903 frame-x.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
904 frame-x.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
905 frame-x.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
906 frame-x.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
907 frame-x.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
908 frame-x.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
909 frame-x.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
910 frame-x.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
911 frame-x.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
912 frame-x.o: glyphs-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
913 frame-x.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
914 frame-x.o: objects-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
915 frame-x.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
916 frame-x.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
917 frame-x.o: scrollbar-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
918 frame-x.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
919 frame-x.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
920 frame-x.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
921 frame-x.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
922 frame-x.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
923 frame-x.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
924 frame-x.o: xintrinsicp.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
925 frame-x.o: xmprimitivep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
926 frame-x.o: xmu.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
927 frame.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
928 frame.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
929 frame.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
930 frame.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
931 frame.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
932 frame.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
933 frame.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
934 frame.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
935 frame.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
936 frame.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
937 frame.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
938 frame.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
939 frame.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
940 frame.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
941 frame.o: menubar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
942 frame.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
943 frame.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
944 frame.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
945 frame.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
946 frame.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
947 frame.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
948 frame.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
949 free-hook.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
950 free-hook.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
951 free-hook.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
952 free-hook.o: hash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
953 general.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
954 general.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
955 general.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
956 getloadavg.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
957 getloadavg.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
958 getloadavg.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
959 gif_err.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
960 gif_err.o: gif_lib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
961 gifalloc.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
962 gifalloc.o: gif_lib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
963 glyphs-x.o: $(LWLIBSRCDIR)/lwlib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
964 glyphs-x.o: ${srcdir}/${etcdir}xemacs.xbm
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
965 glyphs-x.o: bitmaps.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
966 glyphs-x.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
967 glyphs-x.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
968 glyphs-x.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
969 glyphs-x.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
970 glyphs-x.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
971 glyphs-x.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
972 glyphs-x.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
973 glyphs-x.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
974 glyphs-x.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
975 glyphs-x.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
976 glyphs-x.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
977 glyphs-x.o: gif_lib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
978 glyphs-x.o: glyphs-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
979 glyphs-x.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
980 glyphs-x.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
981 glyphs-x.o: objects-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
982 glyphs-x.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
983 glyphs-x.o: opaque.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
984 glyphs-x.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
985 glyphs-x.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
986 glyphs-x.o: sysfile.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
987 glyphs-x.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
988 glyphs-x.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
989 glyphs-x.o: xmu.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
990 glyphs.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
991 glyphs.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
992 glyphs.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
993 glyphs.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
994 glyphs.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
995 glyphs.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
996 glyphs.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
997 glyphs.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
998 glyphs.o: elhash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
999 glyphs.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1000 glyphs.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1001 glyphs.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1002 glyphs.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1003 glyphs.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1004 glyphs.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1005 glyphs.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1006 glyphs.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1007 glyphs.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1008 glyphs.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1009 gmalloc.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1010 gmalloc.o: getpagesize.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1011 gui-x.o: $(LWLIBSRCDIR)/lwlib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1012 gui-x.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1013 gui-x.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1014 gui-x.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1015 gui-x.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1016 gui-x.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1017 gui-x.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1018 gui-x.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1019 gui-x.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1020 gui-x.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1021 gui-x.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1022 gui-x.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1023 gui-x.o: gui-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1024 gui-x.o: opaque.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1025 gui-x.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1026 gui-x.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1027 gui-x.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1028 gui-x.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1029 gui.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1030 gui.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1031 gui.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1032 hash.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1033 hash.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1034 hash.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1035 hash.o: elhash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1036 hash.o: hash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1037 hftctl.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1038 hftctl.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1039 hftctl.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1040 hpplay.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1041 hpplay.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1042 hpplay.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1043 indent.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1044 indent.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1045 indent.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1046 indent.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1047 indent.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1048 indent.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1049 indent.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1050 indent.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1051 indent.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1052 indent.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1053 indent.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1054 indent.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1055 indent.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1056 indent.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1057 indent.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1058 indent.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1059 indent.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1060 indent.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1061 indent.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1062 inline.o: $(LWLIBSRCDIR)/lwlib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1063 inline.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1064 inline.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1065 inline.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1066 inline.o: bytecode.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1067 inline.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1068 inline.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1069 inline.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1070 inline.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1071 inline.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1072 inline.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1073 inline.o: elhash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1074 inline.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1075 inline.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1076 inline.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1077 inline.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1078 inline.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1079 inline.o: glyphs-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1080 inline.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1081 inline.o: gui-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1082 inline.o: keymap.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1083 inline.o: lstream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1084 inline.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1085 inline.o: opaque.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1086 inline.o: process.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1087 inline.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1088 inline.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1089 inline.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1090 inline.o: syntax.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1091 inline.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1092 inline.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1093 inline.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1094 inline.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1095 insdel.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1096 insdel.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1097 insdel.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1098 insdel.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1099 insdel.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1100 insdel.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1101 insdel.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1102 insdel.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1103 insdel.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1104 insdel.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1105 insdel.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1106 insdel.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1107 insdel.o: lstream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1108 insdel.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1109 insdel.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1110 insdel.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1111 insdel.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1112 intl.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1113 intl.o: bytecode.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1114 intl.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1115 intl.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1116 intl.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1117 intl.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1118 intl.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1119 keymap.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1120 keymap.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1121 keymap.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1122 keymap.o: bytecode.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1123 keymap.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1124 keymap.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1125 keymap.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1126 keymap.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1127 keymap.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1128 keymap.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1129 keymap.o: elhash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1130 keymap.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1131 keymap.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1132 keymap.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1133 keymap.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1134 keymap.o: keymap.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1135 keymap.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1136 keymap.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1137 keymap.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1138 keymap.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1139 keymap.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1140 keymap.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1141 libsst.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1142 libsst.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1143 libsst.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1144 libsst.o: libsst.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1145 linuxplay.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1146 linuxplay.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1147 linuxplay.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1148 lread.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1149 lread.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1150 lread.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1151 lread.o: bytecode.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1152 lread.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1153 lread.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1154 lread.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1155 lread.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1156 lread.o: lstream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1157 lread.o: opaque.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1158 lread.o: paths.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1159 lread.o: sysfile.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1160 lstream.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1161 lstream.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1162 lstream.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1163 lstream.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1164 lstream.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1165 lstream.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1166 lstream.o: lstream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1167 lstream.o: sysfile.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1168 macros.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1169 macros.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1170 macros.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1171 macros.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1172 macros.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1173 macros.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1174 macros.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1175 macros.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1176 macros.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1177 macros.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1178 macros.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1179 macros.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1180 macros.o: keymap.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1181 macros.o: macros.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1182 macros.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1183 macros.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1184 macros.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1185 macros.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1186 macros.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1187 macros.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1188 malloc.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1189 malloc.o: getpagesize.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1190 marker.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1191 marker.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1192 marker.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1193 marker.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1194 marker.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1195 md5.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1196 md5.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1197 md5.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1198 md5.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1199 md5.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1200 md5.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1201 menubar-x.o: $(LWLIBSRCDIR)/lwlib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1202 menubar-x.o: EmacsFrame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1203 menubar-x.o: EmacsManager.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1204 menubar-x.o: EmacsShell.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1205 menubar-x.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1206 menubar-x.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1207 menubar-x.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1208 menubar-x.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1209 menubar-x.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1210 menubar-x.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1211 menubar-x.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1212 menubar-x.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1213 menubar-x.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1214 menubar-x.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1215 menubar-x.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1216 menubar-x.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1217 menubar-x.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1218 menubar-x.o: gui-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1219 menubar-x.o: opaque.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1220 menubar-x.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1221 menubar-x.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1222 menubar-x.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1223 menubar-x.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1224 menubar-x.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1225 menubar-x.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1226 menubar-x.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1227 menubar.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1228 menubar.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1229 menubar.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1230 menubar.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1231 menubar.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1232 menubar.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1233 menubar.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1234 menubar.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1235 menubar.o: menubar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1236 menubar.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1237 menubar.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1238 menubar.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1239 menubar.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1240 menubar.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1241 minibuf.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1242 minibuf.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1243 minibuf.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1244 minibuf.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1245 minibuf.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1246 minibuf.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1247 minibuf.o: console-stream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1248 minibuf.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1249 minibuf.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1250 minibuf.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1251 minibuf.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1252 minibuf.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1253 minibuf.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1254 minibuf.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1255 minibuf.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1256 minibuf.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1257 minibuf.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1258 minibuf.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1259 minibuf.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1260 minibuf.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1261 mocklisp.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1262 mocklisp.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1263 mocklisp.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1264 mocklisp.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1265 mocklisp.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1266 msdos.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1267 nas.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1268 nas.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1269 nas.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1270 objects-tty.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1271 objects-tty.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1272 objects-tty.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1273 objects-tty.o: console-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1274 objects-tty.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1275 objects-tty.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1276 objects-tty.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1277 objects-tty.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1278 objects-tty.o: objects-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1279 objects-tty.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1280 objects-tty.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1281 objects-tty.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1282 objects-x.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1283 objects-x.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1284 objects-x.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1285 objects-x.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1286 objects-x.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1287 objects-x.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1288 objects-x.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1289 objects-x.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1290 objects-x.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1291 objects-x.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1292 objects-x.o: objects-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1293 objects-x.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1294 objects-x.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1295 objects-x.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1296 objects.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1297 objects.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1298 objects.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1299 objects.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1300 objects.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1301 objects.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1302 objects.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1303 objects.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1304 objects.o: elhash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1305 objects.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1306 objects.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1307 objects.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1308 objects.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1309 objects.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1310 objects.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1311 objects.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1312 objects.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1313 objects.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1314 opaque.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1315 opaque.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1316 opaque.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1317 opaque.o: opaque.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1318 print.o: backtrace.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1319 print.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1320 print.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1321 print.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1322 print.o: bytecode.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1323 print.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1324 print.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1325 print.o: console-stream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1326 print.o: console-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1327 print.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1328 print.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1329 print.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1330 print.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1331 print.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1332 print.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1333 print.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1334 print.o: lstream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1335 print.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1336 print.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1337 print.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1338 print.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1339 process.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1340 process.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1341 process.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1342 process.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1343 process.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1344 process.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1345 process.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1346 process.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1347 process.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1348 process.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1349 process.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1350 process.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1351 process.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1352 process.o: lstream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1353 process.o: opaque.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1354 process.o: paths.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1355 process.o: process.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1356 process.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1357 process.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1358 process.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1359 process.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1360 process.o: sysfile.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1361 process.o: sysproc.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1362 process.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1363 process.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1364 process.o: syswait.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1365 process.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1366 process.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1367 profile.o: backtrace.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1368 profile.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1369 profile.o: bytecode.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1370 profile.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1371 profile.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1372 profile.o: hash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1373 profile.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1374 pure.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1375 pure.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1376 pure.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1377 pure.o: puresize.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1378 ralloc.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1379 ralloc.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1380 ralloc.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1381 ralloc.o: getpagesize.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1382 rangetab.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1383 rangetab.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1384 rangetab.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1385 realpath.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1386 redisplay-output.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1387 redisplay-output.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1388 redisplay-output.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1389 redisplay-output.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1390 redisplay-output.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1391 redisplay-output.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1392 redisplay-output.o: debug.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1393 redisplay-output.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1394 redisplay-output.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1395 redisplay-output.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1396 redisplay-output.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1397 redisplay-output.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1398 redisplay-output.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1399 redisplay-output.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1400 redisplay-output.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1401 redisplay-output.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1402 redisplay-output.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1403 redisplay-output.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1404 redisplay-output.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1405 redisplay-tty.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1406 redisplay-tty.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1407 redisplay-tty.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1408 redisplay-tty.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1409 redisplay-tty.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1410 redisplay-tty.o: console-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1411 redisplay-tty.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1412 redisplay-tty.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1413 redisplay-tty.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1414 redisplay-tty.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1415 redisplay-tty.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1416 redisplay-tty.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1417 redisplay-tty.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1418 redisplay-tty.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1419 redisplay-tty.o: lstream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1420 redisplay-tty.o: objects-tty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1421 redisplay-tty.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1422 redisplay-tty.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1423 redisplay-tty.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1424 redisplay-tty.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1425 redisplay-tty.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1426 redisplay-tty.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1427 redisplay-tty.o: systty.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1428 redisplay-tty.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1429 redisplay-tty.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1430 redisplay-x.o: $(LWLIBSRCDIR)/lwlib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1431 redisplay-x.o: EmacsFrame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1432 redisplay-x.o: EmacsFrameP.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1433 redisplay-x.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1434 redisplay-x.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1435 redisplay-x.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1436 redisplay-x.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1437 redisplay-x.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1438 redisplay-x.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1439 redisplay-x.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1440 redisplay-x.o: debug.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1441 redisplay-x.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1442 redisplay-x.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1443 redisplay-x.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1444 redisplay-x.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1445 redisplay-x.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1446 redisplay-x.o: glyphs-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1447 redisplay-x.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1448 redisplay-x.o: objects-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1449 redisplay-x.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1450 redisplay-x.o: paths.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1451 redisplay-x.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1452 redisplay-x.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1453 redisplay-x.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1454 redisplay-x.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1455 redisplay-x.o: sysproc.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1456 redisplay-x.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1457 redisplay-x.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1458 redisplay-x.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1459 redisplay-x.o: xgccache.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1460 redisplay-x.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1461 redisplay-x.o: xintrinsicp.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1462 redisplay-x.o: xmprimitivep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1463 redisplay.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1464 redisplay.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1465 redisplay.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1466 redisplay.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1467 redisplay.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1468 redisplay.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1469 redisplay.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1470 redisplay.o: debug.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1471 redisplay.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1472 redisplay.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1473 redisplay.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1474 redisplay.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1475 redisplay.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1476 redisplay.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1477 redisplay.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1478 redisplay.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1479 redisplay.o: menubar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1480 redisplay.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1481 redisplay.o: process.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1482 redisplay.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1483 redisplay.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1484 redisplay.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1485 redisplay.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1486 redisplay.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1487 regex.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1488 regex.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1489 regex.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1490 regex.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1491 regex.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1492 regex.o: regex.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1493 regex.o: syntax.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1494 scrollbar-x.o: $(LWLIBSRCDIR)/lwlib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1495 scrollbar-x.o: EmacsFrame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1496 scrollbar-x.o: EmacsManager.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1497 scrollbar-x.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1498 scrollbar-x.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1499 scrollbar-x.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1500 scrollbar-x.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1501 scrollbar-x.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1502 scrollbar-x.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1503 scrollbar-x.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1504 scrollbar-x.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1505 scrollbar-x.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1506 scrollbar-x.o: glyphs-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1507 scrollbar-x.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1508 scrollbar-x.o: gui-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1509 scrollbar-x.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1510 scrollbar-x.o: scrollbar-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1511 scrollbar-x.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1512 scrollbar-x.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1513 scrollbar-x.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1514 scrollbar-x.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1515 scrollbar-x.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1516 scrollbar.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1517 scrollbar.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1518 scrollbar.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1519 scrollbar.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1520 scrollbar.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1521 scrollbar.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1522 scrollbar.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1523 scrollbar.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1524 scrollbar.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1525 scrollbar.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1526 scrollbar.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1527 scrollbar.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1528 scrollbar.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1529 scrollbar.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1530 scrollbar.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1531 scrollbar.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1532 scrollbar.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1533 search.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1534 search.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1535 search.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1536 search.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1537 search.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1538 search.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1539 search.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1540 search.o: opaque.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1541 search.o: regex.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1542 search.o: syntax.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1543 signal.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1544 signal.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1545 signal.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1546 signal.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1547 signal.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1548 signal.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1549 signal.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1550 signal.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1551 signal.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1552 signal.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1553 signal.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1554 signal.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1555 signal.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1556 signal.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1557 sound.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1558 sound.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1559 sound.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1560 sound.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1561 sound.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1562 sound.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1563 sound.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1564 sound.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1565 sound.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1566 sound.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1567 sound.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1568 sound.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1569 sound.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1570 specifier.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1571 specifier.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1572 specifier.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1573 specifier.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1574 specifier.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1575 specifier.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1576 specifier.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1577 specifier.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1578 specifier.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1579 specifier.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1580 specifier.o: opaque.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1581 specifier.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1582 specifier.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1583 specifier.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1584 specifier.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1585 specifier.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1586 strftime.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1587 strftime.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1588 strftime.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1589 sunOS-fix.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1590 sunplay.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1591 sunplay.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1592 sunplay.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1593 sunplay.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1594 sunpro.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1595 sunpro.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1596 sunpro.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1597 symbols.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1598 symbols.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1599 symbols.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1600 symbols.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1601 symbols.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1602 symbols.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1603 symbols.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1604 syntax.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1605 syntax.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1606 syntax.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1607 syntax.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1608 syntax.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1609 syntax.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1610 syntax.o: insdel.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1611 syntax.o: syntax.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1612 sysdep.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1613 sysdep.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1614 sysdep.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1615 sysdep.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1616 sysdep.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1617 sysdep.o: console-stream.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1618 sysdep.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1619 sysdep.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1620 sysdep.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1621 sysdep.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1622 sysdep.o: events.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1623 sysdep.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1624 sysdep.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1625 sysdep.o: process.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1626 sysdep.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1627 sysdep.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1628 sysdep.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1629 sysdep.o: sysdep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1630 sysdep.o: sysdir.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1631 sysdep.o: sysfile.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1632 sysdep.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1633 sysdep.o: syswait.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1634 sysdep.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1635 sysdep.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1636 sysdep.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1637 termcap.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1638 termcap.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1639 termcap.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1640 termcap.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1641 termcap.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1642 termcap.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1643 terminfo.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1644 toolbar-x.o: $(LWLIBSRCDIR)/lwlib.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1645 toolbar-x.o: EmacsFrame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1646 toolbar-x.o: EmacsFrameP.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1647 toolbar-x.o: EmacsManager.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1648 toolbar-x.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1649 toolbar-x.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1650 toolbar-x.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1651 toolbar-x.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1652 toolbar-x.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1653 toolbar-x.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1654 toolbar-x.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1655 toolbar-x.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1656 toolbar-x.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1657 toolbar-x.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1658 toolbar-x.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1659 toolbar-x.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1660 toolbar-x.o: glyphs-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1661 toolbar-x.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1662 toolbar-x.o: objects-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1663 toolbar-x.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1664 toolbar-x.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1665 toolbar-x.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1666 toolbar-x.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1667 toolbar-x.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1668 toolbar-x.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1669 toolbar-x.o: xgccache.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1670 toolbar-x.o: xintrinsic.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1671 toolbar-x.o: xintrinsicp.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1672 toolbar-x.o: xmprimitivep.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1673 toolbar.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1674 toolbar.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1675 toolbar.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1676 toolbar.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1677 toolbar.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1678 toolbar.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1679 toolbar.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1680 toolbar.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1681 toolbar.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1682 toolbar.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1683 toolbar.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1684 toolbar.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1685 toolbar.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1686 toolbar.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1687 toolbar.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1688 toolbar.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1689 tooltalk.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1690 tooltalk.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1691 tooltalk.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1692 tooltalk.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1693 tooltalk.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1694 tooltalk.o: elhash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1695 tooltalk.o: process.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1696 tooltalk.o: tooltalk.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1697 tparam.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1698 undo.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1699 undo.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1700 undo.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1701 undo.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1702 undo.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1703 undo.o: extents.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1704 vm-limit.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1705 vm-limit.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1706 vm-limit.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1707 vm-limit.o: mem-limits.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1708 vmsproc.o: vmsproc.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1709 window.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1710 window.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1711 window.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1712 window.o: commands.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1713 window.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1714 window.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1715 window.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1716 window.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1717 window.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1718 window.o: faces.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1719 window.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1720 window.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1721 window.o: glyphs.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1722 window.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1723 window.o: redisplay.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1724 window.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1725 window.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1726 window.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1727 window.o: window.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1728 xgccache.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1729 xgccache.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1730 xgccache.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1731 xgccache.o: hash.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1732 xgccache.o: xgccache.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1733 xmu.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1734 xselect.o: blocktype.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1735 xselect.o: buffer.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1736 xselect.o: bufslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1737 xselect.o: config.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1738 xselect.o: conslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1739 xselect.o: console-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1740 xselect.o: console.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1741 xselect.o: device.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1742 xselect.o: dynarr.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1743 xselect.o: frame.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1744 xselect.o: frameslots.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1745 xselect.o: objects-x.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1746 xselect.o: objects.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1747 xselect.o: opaque.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1748 xselect.o: scrollbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1749 xselect.o: specifier.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1750 xselect.o: systime.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1751 xselect.o: toolbar.h
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1752 xselect.o: xintrinsic.h