/[TIS-4000 Rel T60]/sun2.4/opNote/Makefile
ViewVC logotype

Annotation of /sun2.4/opNote/Makefile

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.2 - (hide annotations)
Fri Aug 13 17:48:18 1999 UTC (24 years, 3 months ago) by tis4000
Branch: MAIN
Changes since 1.1: +1164 -1147 lines
13-aug-99	ems	added dataVu.vr as a target

1 tis4000 1.1 CPLUSPLUS = CC -g -DUNIX -DSOLARIS -DUSECB63
2     CFLAGS =
3     ALTCC = gcc -g -Wunused -DUNIX -DSOLARIS -DUSECB63
4     RM = rm -f
5    
6     CODEBASEPATH = /tools/codebase63/source
7     TOP=../../..
8     DEPEND = $(TOP)/share/bin/sun2.4/EPICSmakedepend
9     LIBPATH = ../bin
10     SRCPATH=$(TOP)/share/src
11     OPNOTEPATH=$(SRCPATH)/opNote
12     CLIENTSERVERPATH=$(SRCPATH)/servers
13    
14     INCLUDES = \
15     -I$(OPNOTEPATH) \
16     -I$(GALAXYHOME)/include \
17     -I$(TOP)/share/epicsH \
18     -I$(SRCPATH)/libtis \
19     -I$(SRCPATH)/tisgalaxylib \
20     -I$(SRCPATH)/servers \
21     -I$(CODEBASEPATH) \
22     -I/usr/openwin/include \
23     -I/usr/include
24    
25     ALLDEFINES = $(INCLUDES) -DSOLARIS -DUSECB63
26    
27     STDLIBS = -lsocket -lnsl -lm
28    
29     LIBS = \
30     $(LIBPATH)/libTisClient.a \
31     $(LIBPATH)/tisMsgLib.a \
32     $(LIBPATH)/tisgalaxylib.a \
33     $(CODEBASEPATH)/libcb.a
34    
35     SERVERLIBS = \
36     $(LIBPATH)/libtis.a \
37     $(LIBPATH)/tisMsgLib.a \
38     $(CODEBASEPATH)/libcb.a
39    
40     OPNOTESRC = \
41     $(OPNOTEPATH)/opno.cxx \
42     $(OPNOTEPATH)/opNote.cxx \
43     $(OPNOTEPATH)/opNoteDbClient.c \
44     $(OPNOTEPATH)/opNoteEdit.cxx \
45     $(OPNOTEPATH)/opNoteKey.cxx \
46     $(OPNOTEPATH)/opNoteMain.cxx \
47     $(OPNOTEPATH)/opNoteSearch.cxx \
48     $(OPNOTEPATH)/opNoteUtils.cxx
49    
50     OPNOTEDBSRC = \
51     $(OPNOTEPATH)/opNoteDbServer.c \
52     $(OPNOTEPATH)/opNoteDb.c
53    
54     SRCS = $(OPNOTESRC) $(OPNOTEDBSRCS)
55    
56     OPNOTEOBJS = \
57     opno.o \
58     opNote.o \
59     opNoteDbClient.o \
60     opNoteEdit.o \
61     opNoteKey.o \
62     opNoteMain.o \
63     opNoteSearch.o \
64     opNoteUtils.o
65    
66     SERVEROBJS=opNoteDbServer.o \
67     opNoteDb.o
68    
69 tis4000 1.2 all: opNote opNoteDbServer opNote.vr
70 tis4000 1.1
71     opNote: $(OPNOTEOBJS) ../servers/client.o $(LIBS)
72     $(CPLUSPLUS) -o opNote $(OPNOTEOBJS) ../servers/client.o $(LIBS) \
73     -L$(GALAXYHOME)/lib -L/usr/openwin/lib \
74     -lvgalaxy++-debug -lXext -lX11 $(STDLIBS)
75    
76     opNoteDbServer: $(SERVEROBJS) ../servers/server.o $(SERVERLIBS)
77     $(ALTCC) -o opNoteDbServer $(SERVEROBJS) ../servers/server.o \
78     $(SERVERLIBS) $(STDLIBS)
79    
80 tis4000 1.2 opNote.vr: $(OPNOTEPATH)/opNote.vrx
81     $(RM) opNote.vr
82     vrx2vr -force $(OPNOTEPATH)/opNote.vrx
83    
84 tis4000 1.1 opNote.o: $(OPNOTEPATH)/opNote.cxx
85     $(RM) opNote.o
86     $(CPLUSPLUS) -c $(INCLUDES) $(OPNOTEPATH)/opNote.cxx
87    
88     opNoteDb.o: $(OPNOTEPATH)/opNoteDb.c
89     $(RM) opNoteDb.o
90     $(ALTCC) -c $(INCLUDES) $(OPNOTEPATH)/opNoteDb.c
91    
92     opNoteDbServer.o: $(OPNOTEPATH)/opNoteDbServer.c
93     $(RM) opNoteDbServer.o
94     $(ALTCC) -c $(INCLUDES) $(OPNOTEPATH)/opNoteDbServer.c
95    
96     opNoteEdit.o: $(OPNOTEPATH)/opNoteEdit.cxx
97     $(RM) opNoteEdit.o
98     $(CPLUSPLUS) -c $(INCLUDES) $(OPNOTEPATH)/opNoteEdit.cxx
99    
100     opNoteKey.o: $(OPNOTEPATH)/opNoteKey.cxx
101     $(RM) opNoteKey.o
102     $(CPLUSPLUS) -c $(INCLUDES) $(OPNOTEPATH)/opNoteKey.cxx
103    
104     opNoteMain.o: $(OPNOTEPATH)/opNoteMain.cxx
105     $(RM) opNoteMain.o
106     $(CPLUSPLUS) -c $(INCLUDES) $(OPNOTEPATH)/opNoteMain.cxx
107    
108     opNoteSearch.o: $(OPNOTEPATH)/opNoteSearch.cxx
109     $(RM) opNoteSearch.o
110     $(CPLUSPLUS) -c $(INCLUDES) $(OPNOTEPATH)/opNoteSearch.cxx
111    
112     opNoteUtils.o: $(OPNOTEPATH)/opNoteUtils.cxx
113     $(RM) opNoteUtils.o
114     $(CPLUSPLUS) -c $(INCLUDES) $(OPNOTEPATH)/opNoteUtils.cxx
115    
116     opNoteDbClient.o: $(OPNOTEPATH)/opNoteDbClient.c
117     $(RM) opNoteDbClient.o
118     $(ALTCC) -c $(INCLUDES) $(OPNOTEPATH)/opNoteDbClient.c
119    
120     opno.o: $(OPNOTEPATH)/opno.cxx
121     $(RM) opno.o
122     $(CPLUSPLUS) -c $(INCLUDES) $(OPNOTEPATH)/opno.cxx
123    
124     server.o:
125     cd ../servers; make server.o
126    
127     client.o:
128     cd ../servers; make client.o
129    
130     install:
131     cp -p opNote ../bin
132     cp -p opNoteDbServer ../bin
133 tis4000 1.2 cp -p opNote.vr ../bin
134 tis4000 1.1
135     clean:
136     $(RM) $(OPNOTEOBJS)
137     $(RM) $(SERVEROBJS)
138     $(RM) opNote
139     $(RM) opNoteDbServer
140 tis4000 1.2 $(RM) opNote.vr
141 tis4000 1.1
142     #
143     # Uses EPICSmakedepend to create dependencies
144     #
145    
146     depend::
147     $(DEPEND) -s "#DO NOT DELETE" -- $(ALLDEFINES) -- $(SRCS)
148    
149     #DO NOT DELETE
150     #DO NOT DELETE
151    
152     opno.o: ../../../share/src/opNote/opno.cxx \
153 tis4000 1.2 /tools/galaxy/galaxycxx/include/vname.h \
154     /tools/galaxy/galaxycxx/include/vport.h \
155     /tools/galaxy/galaxycxx/include/vportenv.h \
156     /tools/galaxy/galaxycxx/include/vhdrdefs.h \
157     /tools/galaxy/galaxycxx/include/vhdrmode.h \
158     /tools/galaxy/galaxycxx/include/vstdio.h \
159     /tools/galaxy/galaxycxx/include/vstddef.h /usr/include/stddef.h \
160     /tools/galaxy/galaxycxx/include/vstdarg.h /usr/include/stdarg.h \
161     /usr/include/sys/va_list.h /usr/include/stdio.h \
162     /usr/include/sys/feature_tests.h \
163     /tools/galaxy/galaxycxx/include/vdebug.h \
164     /tools/galaxy/galaxycxx/include/vstd.h \
165     /tools/galaxy/galaxycxx/include/viter.h \
166     /tools/galaxy/galaxycxx/include/vmem.h \
167     /tools/galaxy/galaxycxx/include/vstring.h /usr/include/string.h \
168     /tools/galaxy/galaxycxx/include/vex.h \
169     /tools/galaxy/galaxycxx/include/vsetjmp.h /usr/include/setjmp.h \
170     /tools/galaxy/galaxycxx/include/vex_c.h \
171     /tools/galaxy/galaxycxx/include/vmem_c.h \
172     /tools/galaxy/galaxycxx/include/vscribe.h \
173     /tools/galaxy/galaxycxx/include/vscribe_c.h \
174     /tools/galaxy/galaxycxx/include/vchar.h \
175     /tools/galaxy/galaxycxx/include/vctype.h /usr/include/ctype.h \
176     /tools/galaxy/galaxycxx/include/vchar_c.h \
177     /tools/galaxy/galaxycxx/include/vname_c.h \
178     ../../../share/src/opNote/opno.h
179 tis4000 1.1 opNote.o: ../../../share/src/opNote/opNote.cxx \
180 tis4000 1.2 /tools/galaxy/galaxycxx/include/vport.h \
181     /tools/galaxy/galaxycxx/include/vportenv.h \
182     /tools/galaxy/galaxycxx/include/vhdrdefs.h \
183     /tools/galaxy/galaxycxx/include/vhdrmode.h \
184     /tools/galaxy/galaxycxx/include/vstdlib.h \
185     /tools/galaxy/galaxycxx/include/vstddef.h /usr/include/stddef.h \
186     /tools/galaxy/galaxycxx/include/vmath.h /usr/include/math.h \
187     /tools/galaxy/galaxycxx/include/vunistd.h \
188     /tools/galaxy/galaxycxx/include/vsystypes.h /usr/include/sys/types.h \
189     /usr/include/sys/feature_tests.h /usr/include/sys/isa_defs.h \
190     /usr/include/sys/machtypes.h /usr/include/sys/int_types.h \
191     /usr/include/sys/select.h /usr/include/sys/time.h /usr/include/time.h \
192     /tools/galaxy/galaxycxx/include/vsysfile.h /usr/include/sys/file.h \
193     /usr/include/sys/t_lock.h /usr/include/sys/machlock.h \
194     /usr/include/sys/sleepq.h /usr/include/sys/turnstile.h \
195     /usr/include/sys/param.h /usr/include/sys/unistd.h \
196     /usr/include/sys/pirec.h /usr/include/sys/mutex.h \
197     /usr/include/sys/rwlock.h /usr/include/sys/semaphore.h \
198     /usr/include/sys/condvar.h /tools/galaxy/galaxycxx/include/vsysstat.h \
199     /usr/include/sys/stat.h /tools/galaxy/galaxycxx/include/vlibc.h \
200     /usr/include/unistd.h /usr/include/sys/ioctl.h \
201     /usr/include/sys/termio.h /usr/include/sys/termios.h \
202     /usr/include/sys/ttydev.h /usr/include/sys/filio.h \
203     /usr/include/sys/ioccom.h /usr/include/stdlib.h \
204     /tools/galaxy/galaxycxx/include/vkind.h \
205     /tools/galaxy/galaxycxx/include/vstd.h \
206     /tools/galaxy/galaxycxx/include/viter.h \
207     /tools/galaxy/galaxycxx/include/vex.h \
208     /tools/galaxy/galaxycxx/include/vstdarg.h /usr/include/stdarg.h \
209     /usr/include/sys/va_list.h /tools/galaxy/galaxycxx/include/vstdio.h \
210     /usr/include/stdio.h /tools/galaxy/galaxycxx/include/vsetjmp.h \
211     /usr/include/setjmp.h /tools/galaxy/galaxycxx/include/vdebug.h \
212     /tools/galaxy/galaxycxx/include/vex_c.h \
213     /tools/galaxy/galaxycxx/include/vevent.h \
214     /tools/galaxy/galaxycxx/include/vtimestamp.h \
215     /tools/galaxy/galaxycxx/include/vlonglong.h \
216     /tools/galaxy/galaxycxx/include/vlonglong_c.h \
217     /tools/galaxy/galaxycxx/include/vtimestamp_c.h \
218     /tools/galaxy/galaxycxx/include/vkey.h \
219     /tools/galaxy/galaxycxx/include/vchar.h \
220     /tools/galaxy/galaxycxx/include/vctype.h /usr/include/ctype.h \
221     /tools/galaxy/galaxycxx/include/vstring.h /usr/include/string.h \
222     /tools/galaxy/galaxycxx/include/vmem.h \
223     /tools/galaxy/galaxycxx/include/vmem_c.h \
224     /tools/galaxy/galaxycxx/include/vscribe.h \
225     /tools/galaxy/galaxycxx/include/vscribe_c.h \
226     /tools/galaxy/galaxycxx/include/vchar_c.h \
227     /tools/galaxy/galaxycxx/include/vkey_c.h \
228     /tools/galaxy/galaxycxx/include/vname.h \
229     /tools/galaxy/galaxycxx/include/vname_c.h \
230     /tools/galaxy/galaxycxx/include/vevent_c.h \
231     /tools/galaxy/galaxycxx/include/vloadable.h \
232     /tools/galaxy/galaxycxx/include/vresource.h \
233     /tools/galaxy/galaxycxx/include/vfixed.h \
234     /tools/galaxy/galaxycxx/include/vlimits.h /usr/include/limits.h \
235     /tools/galaxy/galaxycxx/include/vsysparam.h \
236     /tools/galaxy/galaxycxx/include/vdirent.h /usr/include/dirent.h \
237     /usr/include/sys/dirent.h /tools/galaxy/galaxycxx/include/vsysdir.h \
238     /tools/galaxy/galaxycxx/include/vfixed_c.h \
239     /tools/galaxy/galaxycxx/include/vrect.h \
240     /tools/galaxy/galaxycxx/include/vclient.h \
241     /tools/galaxy/galaxycxx/include/vclient_c.h \
242     /tools/galaxy/galaxycxx/include/vrect_c.h \
243     /tools/galaxy/galaxycxx/include/vfs.h \
244     /tools/galaxy/galaxycxx/include/vpool.h \
245     /tools/galaxy/galaxycxx/include/vpool_c.h \
246     /tools/galaxy/galaxycxx/include/vstr.h \
247     /tools/galaxy/galaxycxx/include/vstr_c.h \
248     /tools/galaxy/galaxycxx/include/vfs_c.h \
249     /tools/galaxy/galaxycxx/include/vscrap.h \
250     /tools/galaxy/galaxycxx/include/vdict.h \
251     /tools/galaxy/galaxycxx/include/vfloat.h /usr/include/float.h \
252     /tools/galaxy/galaxycxx/include/vdict_c.h \
253     /tools/galaxy/galaxycxx/include/vclass.h \
254     /tools/galaxy/galaxycxx/include/vclass_c.h \
255     /tools/galaxy/galaxycxx/include/vinstance.h \
256     /tools/galaxy/galaxycxx/include/vinstance_c.h \
257     /tools/galaxy/galaxycxx/include/vdelegator.h \
258     /tools/galaxy/galaxycxx/include/vdelegator_c.h \
259     /tools/galaxy/galaxycxx/include/vscrap_c.h \
260     /tools/galaxy/galaxycxx/include/vresource_c.h \
261     /tools/galaxy/galaxycxx/include/vobject.h \
262     /tools/galaxy/galaxycxx/include/vobject_c.h \
263     /tools/galaxy/galaxycxx/include/vwindow.h \
264     /tools/galaxy/galaxycxx/include/vcolor.h \
265     /tools/galaxy/galaxycxx/include/vbuffer.h \
266     /tools/galaxy/galaxycxx/include/vbuffer_c.h \
267     /tools/galaxy/galaxycxx/include/vpref.h \
268     /tools/galaxy/galaxycxx/include/vpref_c.h \
269     /tools/galaxy/galaxycxx/include/vcolor_c.h \
270     /tools/galaxy/galaxycxx/include/vfont.h \
271     /tools/galaxy/galaxycxx/include/vmatrix.h \
272     /tools/galaxy/galaxycxx/include/vmatrix_c.h \
273     /tools/galaxy/galaxycxx/include/vfont_c.h \
274     /tools/galaxy/galaxycxx/include/vimage.h \
275     /tools/galaxy/galaxycxx/include/vpixmap.h \
276     /tools/galaxy/galaxycxx/include/vpixmap_c.h \
277     /tools/galaxy/galaxycxx/include/vimage_c.h \
278     /tools/galaxy/galaxycxx/include/vdraw.h \
279     /tools/galaxy/galaxycxx/include/vpoint.h \
280     /tools/galaxy/galaxycxx/include/vpoint_c.h \
281     /tools/galaxy/galaxycxx/include/vtransform.h \
282     /tools/galaxy/galaxycxx/include/vtransform_c.h \
283     /tools/galaxy/galaxycxx/include/vdraw_c.h \
284     /tools/galaxy/galaxycxx/include/vcursor.h \
285     /tools/galaxy/galaxycxx/include/vcursor_c.h \
286     /tools/galaxy/galaxycxx/include/vcommand.h \
287     /tools/galaxy/galaxycxx/include/vcommand_c.h \
288     /tools/galaxy/galaxycxx/include/vwindow_c.h \
289     /tools/galaxy/galaxycxx/include/vmenu.h \
290     /tools/galaxy/galaxycxx/include/vlaf.h \
291     /tools/galaxy/galaxycxx/include/vlaf_c.h \
292     /tools/galaxy/galaxycxx/include/vmenu_c.h \
293     /tools/galaxy/galaxycxx/include/vapplication.h \
294     /tools/galaxy/galaxycxx/include/vapplication_c.h \
295     /tools/galaxy/galaxycxx/include/vdialog.h \
296     /tools/galaxy/galaxycxx/include/vspring.h \
297     /tools/galaxy/galaxycxx/include/vspring_c.h \
298     /tools/galaxy/galaxycxx/include/vdialog_c.h \
299     /tools/galaxy/galaxycxx/include/vmenubar.h \
300     /tools/galaxy/galaxycxx/include/vmenubar_c.h \
301     /tools/galaxy/galaxycxx/include/vbutton.h \
302     /tools/galaxy/galaxycxx/include/vbutton_c.h \
303     /tools/galaxy/galaxycxx/include/vtextitem.h \
304     /tools/galaxy/galaxycxx/include/vtextview.h \
305     /tools/galaxy/galaxycxx/include/vtext.h \
306     /tools/galaxy/galaxycxx/include/vundo.h \
307     /tools/galaxy/galaxycxx/include/vundo_c.h \
308     /tools/galaxy/galaxycxx/include/vtext_c.h \
309     /tools/galaxy/galaxycxx/include/vtimer.h \
310     /tools/galaxy/galaxycxx/include/vtimer_c.h \
311     /tools/galaxy/galaxycxx/include/vslider.h \
312     /tools/galaxy/galaxycxx/include/vcontrol.h \
313     /tools/galaxy/galaxycxx/include/vcontrol_c.h \
314     /tools/galaxy/galaxycxx/include/vslider_c.h \
315     /tools/galaxy/galaxycxx/include/vclipboard.h \
316     /tools/galaxy/galaxycxx/include/vclipboard_c.h \
317     /tools/galaxy/galaxycxx/include/vtextview_c.h \
318     /tools/galaxy/galaxycxx/include/vtextitem_c.h \
319     /tools/galaxy/galaxycxx/include/vstartup.h \
320     /tools/galaxy/galaxycxx/include/vstartup_c.h \
321     /tools/galaxy/galaxycxx/include/vtime.h \
322     ../../../share/src/opNote/opNoteDb.h ../../../share/epicsH/cb45to63.h \
323     /tools/codebase63/source/d4all.h /tools/codebase63/source/p4port.h \
324     /tools/codebase63/source/d4defs.h /tools/codebase63/source/d4data.h \
325     /tools/codebase63/source/d4declar.h \
326     /tools/codebase63/source/d4inline.h /tools/codebase63/source/f4flag.h \
327     /tools/codebase63/source/e4expr.h /tools/codebase63/source/s4sort.h \
328     /tools/codebase63/source/e4string.h \
329     /tools/codebase63/source/e4error.h /tools/codebase63/source/o4opt.h \
330     /tools/codebase63/source/c4com.h /tools/codebase63/source/c4trans.h \
331     /tools/codebase63/source/r4relate.h \
332     ../../../share/src/libtis/OperPriv.h \
333     ../../../share/epicsH/OperPrivErr.h ../../../share/epicsH/msgMon.h \
334     ../../../share/src/opNote/opno.h \
335     ../../../share/src/opNote/opNoteUtils.hxx \
336     /tools/galaxy/galaxycxx/include/vcombobox.h \
337     /tools/galaxy/galaxycxx/include/vcontain.h \
338     /tools/galaxy/galaxycxx/include/vcontain_c.h \
339     /tools/galaxy/galaxycxx/include/vlistitem.h \
340     /tools/galaxy/galaxycxx/include/vlistview.h \
341     /tools/galaxy/galaxycxx/include/vlist.h \
342     /tools/galaxy/galaxycxx/include/vlist_c.h \
343     /tools/galaxy/galaxycxx/include/vlistsize.h \
344     /tools/galaxy/galaxycxx/include/vlistsize_c.h \
345     /tools/galaxy/galaxycxx/include/vlistview_c.h \
346     /tools/galaxy/galaxycxx/include/vliststr.h \
347     /tools/galaxy/galaxycxx/include/vliststr_c.h \
348     /tools/galaxy/galaxycxx/include/vlistitem_c.h \
349     /tools/galaxy/galaxycxx/include/vcombobox_c.h \
350     ../../../share/src/opNote/opNote.hxx \
351     ../../../share/src/tisgalaxylib/textFilters.hxx \
352     ../../../share/src/tisgalaxylib/tisgalaxylib.hxx \
353     /tools/galaxy/galaxycxx/include/vspinner.h \
354     /tools/galaxy/galaxycxx/include/vspinner_c.h \
355     /tools/galaxy/galaxycxx/include/vdomitem.h \
356     /tools/galaxy/galaxycxx/include/vdomview.h \
357     /tools/galaxy/galaxycxx/include/vdomain.h \
358     /tools/galaxy/galaxycxx/include/vdomain_c.h \
359     /tools/galaxy/galaxycxx/include/vdomview_c.h \
360     /tools/galaxy/galaxycxx/include/vdomitem_c.h \
361     /tools/galaxy/galaxycxx/include/vnotice.h \
362     /tools/galaxy/galaxycxx/include/vconfirm.h \
363     /tools/galaxy/galaxycxx/include/vconfirm_c.h \
364     /tools/galaxy/galaxycxx/include/vnotice_c.h
365 tis4000 1.1 opNoteDbClient.o: ../../../share/src/opNote/opNoteDbClient.c \
366 tis4000 1.2 /tools/codebase63/source/d4all.h /usr/include/stdlib.h \
367     /usr/include/sys/feature_tests.h /usr/include/string.h \
368     /usr/include/stdio.h /usr/include/sys/va_list.h \
369     /tools/codebase63/source/p4port.h /usr/include/unistd.h \
370     /usr/include/sys/types.h /usr/include/sys/isa_defs.h \
371     /usr/include/sys/machtypes.h /usr/include/sys/int_types.h \
372     /usr/include/sys/select.h /usr/include/sys/time.h /usr/include/time.h \
373     /usr/include/sys/unistd.h /tools/codebase63/source/d4defs.h \
374     /tools/codebase63/source/d4data.h /tools/codebase63/source/d4declar.h \
375     /tools/codebase63/source/d4inline.h /tools/codebase63/source/f4flag.h \
376     /tools/codebase63/source/e4expr.h /tools/codebase63/source/s4sort.h \
377     /tools/codebase63/source/e4string.h \
378     /tools/codebase63/source/e4error.h /tools/codebase63/source/o4opt.h \
379     /tools/codebase63/source/c4com.h /tools/codebase63/source/c4trans.h \
380     /tools/codebase63/source/r4relate.h /usr/include/ctype.h \
381     /usr/include/fcntl.h /usr/include/sys/fcntl.h /usr/include/memory.h \
382     ../../../share/src/servers/client.h /usr/include/errno.h \
383     /usr/include/sys/errno.h /usr/include/sys/filio.h \
384     /usr/include/sys/ioccom.h /usr/include/sys/socket.h \
385     /usr/include/sys/uio.h /usr/include/sys/netconfig.h \
386     /usr/include/netinet/in.h /usr/include/sys/stream.h \
387     /usr/include/sys/vnode.h /usr/include/sys/t_lock.h \
388     /usr/include/sys/machlock.h /usr/include/sys/sleepq.h \
389     /usr/include/sys/turnstile.h /usr/include/sys/param.h \
390     /usr/include/sys/pirec.h /usr/include/sys/mutex.h \
391     /usr/include/sys/rwlock.h /usr/include/sys/semaphore.h \
392     /usr/include/sys/condvar.h /usr/include/sys/cred.h \
393     /usr/include/sys/resource.h /usr/include/vm/seg_enum.h \
394     /usr/include/sys/poll.h /usr/include/sys/strmdep.h \
395     /usr/include/sys/model.h /usr/include/sys/byteorder.h \
396     /usr/include/netdb.h ../../../share/src/servers/tisservice.h \
397     ../../../share/epicsH/tisByteOrder.h \
398     ../../../share/src/opNote/opNoteDb.h ../../../share/epicsH/cb45to63.h \
399     ../../../share/src/opNote/opNoteDbServer.h
400 tis4000 1.1 opNoteEdit.o: ../../../share/src/opNote/opNoteEdit.cxx \
401 tis4000 1.2 /tools/galaxy/galaxycxx/include/vport.h \
402     /tools/galaxy/galaxycxx/include/vportenv.h \
403     /tools/galaxy/galaxycxx/include/vhdrdefs.h \
404     /tools/galaxy/galaxycxx/include/vhdrmode.h \
405     /tools/galaxy/galaxycxx/include/vstdlib.h \
406     /tools/galaxy/galaxycxx/include/vstddef.h /usr/include/stddef.h \
407     /tools/galaxy/galaxycxx/include/vmath.h /usr/include/math.h \
408     /tools/galaxy/galaxycxx/include/vunistd.h \
409     /tools/galaxy/galaxycxx/include/vsystypes.h /usr/include/sys/types.h \
410     /usr/include/sys/feature_tests.h /usr/include/sys/isa_defs.h \
411     /usr/include/sys/machtypes.h /usr/include/sys/int_types.h \
412     /usr/include/sys/select.h /usr/include/sys/time.h /usr/include/time.h \
413     /tools/galaxy/galaxycxx/include/vsysfile.h /usr/include/sys/file.h \
414     /usr/include/sys/t_lock.h /usr/include/sys/machlock.h \
415     /usr/include/sys/sleepq.h /usr/include/sys/turnstile.h \
416     /usr/include/sys/param.h /usr/include/sys/unistd.h \
417     /usr/include/sys/pirec.h /usr/include/sys/mutex.h \
418     /usr/include/sys/rwlock.h /usr/include/sys/semaphore.h \
419     /usr/include/sys/condvar.h /tools/galaxy/galaxycxx/include/vsysstat.h \
420     /usr/include/sys/stat.h /tools/galaxy/galaxycxx/include/vlibc.h \
421     /usr/include/unistd.h /usr/include/sys/ioctl.h \
422     /usr/include/sys/termio.h /usr/include/sys/termios.h \
423     /usr/include/sys/ttydev.h /usr/include/sys/filio.h \
424     /usr/include/sys/ioccom.h /usr/include/stdlib.h \
425     /tools/galaxy/galaxycxx/include/vkind.h \
426     /tools/galaxy/galaxycxx/include/vstd.h \
427     /tools/galaxy/galaxycxx/include/viter.h \
428     /tools/galaxy/galaxycxx/include/vex.h \
429     /tools/galaxy/galaxycxx/include/vstdarg.h /usr/include/stdarg.h \
430     /usr/include/sys/va_list.h /tools/galaxy/galaxycxx/include/vstdio.h \
431     /usr/include/stdio.h /tools/galaxy/galaxycxx/include/vsetjmp.h \
432     /usr/include/setjmp.h /tools/galaxy/galaxycxx/include/vdebug.h \
433     /tools/galaxy/galaxycxx/include/vex_c.h \
434     /tools/galaxy/galaxycxx/include/vevent.h \
435     /tools/galaxy/galaxycxx/include/vtimestamp.h \
436     /tools/galaxy/galaxycxx/include/vlonglong.h \
437     /tools/galaxy/galaxycxx/include/vlonglong_c.h \
438     /tools/galaxy/galaxycxx/include/vtimestamp_c.h \
439     /tools/galaxy/galaxycxx/include/vkey.h \
440     /tools/galaxy/galaxycxx/include/vchar.h \
441     /tools/galaxy/galaxycxx/include/vctype.h /usr/include/ctype.h \
442     /tools/galaxy/galaxycxx/include/vstring.h /usr/include/string.h \
443     /tools/galaxy/galaxycxx/include/vmem.h \
444     /tools/galaxy/galaxycxx/include/vmem_c.h \
445     /tools/galaxy/galaxycxx/include/vscribe.h \
446     /tools/galaxy/galaxycxx/include/vscribe_c.h \
447     /tools/galaxy/galaxycxx/include/vchar_c.h \
448     /tools/galaxy/galaxycxx/include/vkey_c.h \
449     /tools/galaxy/galaxycxx/include/vname.h \
450     /tools/galaxy/galaxycxx/include/vname_c.h \
451     /tools/galaxy/galaxycxx/include/vevent_c.h \
452     /tools/galaxy/galaxycxx/include/vloadable.h \
453     /tools/galaxy/galaxycxx/include/vresource.h \
454     /tools/galaxy/galaxycxx/include/vfixed.h \
455     /tools/galaxy/galaxycxx/include/vlimits.h /usr/include/limits.h \
456     /tools/galaxy/galaxycxx/include/vsysparam.h \
457     /tools/galaxy/galaxycxx/include/vdirent.h /usr/include/dirent.h \
458     /usr/include/sys/dirent.h /tools/galaxy/galaxycxx/include/vsysdir.h \
459     /tools/galaxy/galaxycxx/include/vfixed_c.h \
460     /tools/galaxy/galaxycxx/include/vrect.h \
461     /tools/galaxy/galaxycxx/include/vclient.h \
462     /tools/galaxy/galaxycxx/include/vclient_c.h \
463     /tools/galaxy/galaxycxx/include/vrect_c.h \
464     /tools/galaxy/galaxycxx/include/vfs.h \
465     /tools/galaxy/galaxycxx/include/vpool.h \
466     /tools/galaxy/galaxycxx/include/vpool_c.h \
467     /tools/galaxy/galaxycxx/include/vstr.h \
468     /tools/galaxy/galaxycxx/include/vstr_c.h \
469     /tools/galaxy/galaxycxx/include/vfs_c.h \
470     /tools/galaxy/galaxycxx/include/vscrap.h \
471     /tools/galaxy/galaxycxx/include/vdict.h \
472     /tools/galaxy/galaxycxx/include/vfloat.h /usr/include/float.h \
473     /tools/galaxy/galaxycxx/include/vdict_c.h \
474     /tools/galaxy/galaxycxx/include/vclass.h \
475     /tools/galaxy/galaxycxx/include/vclass_c.h \
476     /tools/galaxy/galaxycxx/include/vinstance.h \
477     /tools/galaxy/galaxycxx/include/vinstance_c.h \
478     /tools/galaxy/galaxycxx/include/vdelegator.h \
479     /tools/galaxy/galaxycxx/include/vdelegator_c.h \
480     /tools/galaxy/galaxycxx/include/vscrap_c.h \
481     /tools/galaxy/galaxycxx/include/vresource_c.h \
482     /tools/galaxy/galaxycxx/include/vobject.h \
483     /tools/galaxy/galaxycxx/include/vobject_c.h \
484     /tools/galaxy/galaxycxx/include/vwindow.h \
485     /tools/galaxy/galaxycxx/include/vcolor.h \
486     /tools/galaxy/galaxycxx/include/vbuffer.h \
487     /tools/galaxy/galaxycxx/include/vbuffer_c.h \
488     /tools/galaxy/galaxycxx/include/vpref.h \
489     /tools/galaxy/galaxycxx/include/vpref_c.h \
490     /tools/galaxy/galaxycxx/include/vcolor_c.h \
491     /tools/galaxy/galaxycxx/include/vfont.h \
492     /tools/galaxy/galaxycxx/include/vmatrix.h \
493     /tools/galaxy/galaxycxx/include/vmatrix_c.h \
494     /tools/galaxy/galaxycxx/include/vfont_c.h \
495     /tools/galaxy/galaxycxx/include/vimage.h \
496     /tools/galaxy/galaxycxx/include/vpixmap.h \
497     /tools/galaxy/galaxycxx/include/vpixmap_c.h \
498     /tools/galaxy/galaxycxx/include/vimage_c.h \
499     /tools/galaxy/galaxycxx/include/vdraw.h \
500     /tools/galaxy/galaxycxx/include/vpoint.h \
501     /tools/galaxy/galaxycxx/include/vpoint_c.h \
502     /tools/galaxy/galaxycxx/include/vtransform.h \
503     /tools/galaxy/galaxycxx/include/vtransform_c.h \
504     /tools/galaxy/galaxycxx/include/vdraw_c.h \
505     /tools/galaxy/galaxycxx/include/vcursor.h \
506     /tools/galaxy/galaxycxx/include/vcursor_c.h \
507     /tools/galaxy/galaxycxx/include/vcommand.h \
508     /tools/galaxy/galaxycxx/include/vcommand_c.h \
509     /tools/galaxy/galaxycxx/include/vwindow_c.h \
510     /tools/galaxy/galaxycxx/include/vmenu.h \
511     /tools/galaxy/galaxycxx/include/vlaf.h \
512     /tools/galaxy/galaxycxx/include/vlaf_c.h \
513     /tools/galaxy/galaxycxx/include/vmenu_c.h \
514     /tools/galaxy/galaxycxx/include/vapplication.h \
515     /tools/galaxy/galaxycxx/include/vapplication_c.h \
516     /tools/galaxy/galaxycxx/include/vdialog.h \
517     /tools/galaxy/galaxycxx/include/vspring.h \
518     /tools/galaxy/galaxycxx/include/vspring_c.h \
519     /tools/galaxy/galaxycxx/include/vdialog_c.h \
520     /tools/galaxy/galaxycxx/include/vmenubar.h \
521     /tools/galaxy/galaxycxx/include/vmenubar_c.h \
522     /tools/galaxy/galaxycxx/include/vbutton.h \
523     /tools/galaxy/galaxycxx/include/vbutton_c.h \
524     /tools/galaxy/galaxycxx/include/vtextitem.h \
525     /tools/galaxy/galaxycxx/include/vtextview.h \
526     /tools/galaxy/galaxycxx/include/vtext.h \
527     /tools/galaxy/galaxycxx/include/vundo.h \
528     /tools/galaxy/galaxycxx/include/vundo_c.h \
529     /tools/galaxy/galaxycxx/include/vtext_c.h \
530     /tools/galaxy/galaxycxx/include/vtimer.h \
531     /tools/galaxy/galaxycxx/include/vtimer_c.h \
532     /tools/galaxy/galaxycxx/include/vslider.h \
533     /tools/galaxy/galaxycxx/include/vcontrol.h \
534     /tools/galaxy/galaxycxx/include/vcontrol_c.h \
535     /tools/galaxy/galaxycxx/include/vslider_c.h \
536     /tools/galaxy/galaxycxx/include/vclipboard.h \
537     /tools/galaxy/galaxycxx/include/vclipboard_c.h \
538     /tools/galaxy/galaxycxx/include/vtextview_c.h \
539     /tools/galaxy/galaxycxx/include/vtextitem_c.h \
540     /tools/galaxy/galaxycxx/include/vstartup.h \
541     /tools/galaxy/galaxycxx/include/vstartup_c.h \
542     /tools/galaxy/galaxycxx/include/vtime.h \
543     ../../../share/src/opNote/opNoteDb.h ../../../share/epicsH/cb45to63.h \
544     /tools/codebase63/source/d4all.h /tools/codebase63/source/p4port.h \
545     /tools/codebase63/source/d4defs.h /tools/codebase63/source/d4data.h \
546     /tools/codebase63/source/d4declar.h \
547     /tools/codebase63/source/d4inline.h /tools/codebase63/source/f4flag.h \
548     /tools/codebase63/source/e4expr.h /tools/codebase63/source/s4sort.h \
549     /tools/codebase63/source/e4string.h \
550     /tools/codebase63/source/e4error.h /tools/codebase63/source/o4opt.h \
551     /tools/codebase63/source/c4com.h /tools/codebase63/source/c4trans.h \
552     /tools/codebase63/source/r4relate.h ../../../share/src/opNote/opno.h \
553     ../../../share/src/opNote/opNoteUtils.hxx \
554     /tools/galaxy/galaxycxx/include/vcombobox.h \
555     /tools/galaxy/galaxycxx/include/vcontain.h \
556     /tools/galaxy/galaxycxx/include/vcontain_c.h \
557     /tools/galaxy/galaxycxx/include/vlistitem.h \
558     /tools/galaxy/galaxycxx/include/vlistview.h \
559     /tools/galaxy/galaxycxx/include/vlist.h \
560     /tools/galaxy/galaxycxx/include/vlist_c.h \
561     /tools/galaxy/galaxycxx/include/vlistsize.h \
562     /tools/galaxy/galaxycxx/include/vlistsize_c.h \
563     /tools/galaxy/galaxycxx/include/vlistview_c.h \
564     /tools/galaxy/galaxycxx/include/vliststr.h \
565     /tools/galaxy/galaxycxx/include/vliststr_c.h \
566     /tools/galaxy/galaxycxx/include/vlistitem_c.h \
567     /tools/galaxy/galaxycxx/include/vcombobox_c.h \
568     ../../../share/src/opNote/opNote.hxx \
569     ../../../share/src/tisgalaxylib/textFilters.hxx \
570     ../../../share/src/tisgalaxylib/tisgalaxylib.hxx \
571     /tools/galaxy/galaxycxx/include/vspinner.h \
572     /tools/galaxy/galaxycxx/include/vspinner_c.h \
573     /tools/galaxy/galaxycxx/include/vdomitem.h \
574     /tools/galaxy/galaxycxx/include/vdomview.h \
575     /tools/galaxy/galaxycxx/include/vdomain.h \
576     /tools/galaxy/galaxycxx/include/vdomain_c.h \
577     /tools/galaxy/galaxycxx/include/vdomview_c.h \
578     /tools/galaxy/galaxycxx/include/vdomitem_c.h \
579     /tools/galaxy/galaxycxx/include/vnotice.h \
580     /tools/galaxy/galaxycxx/include/vconfirm.h \
581     /tools/galaxy/galaxycxx/include/vconfirm_c.h \
582     /tools/galaxy/galaxycxx/include/vnotice_c.h
583 tis4000 1.1 opNoteKey.o: ../../../share/src/opNote/opNoteKey.cxx \
584 tis4000 1.2 /tools/galaxy/galaxycxx/include/vport.h \
585     /tools/galaxy/galaxycxx/include/vportenv.h \
586     /tools/galaxy/galaxycxx/include/vhdrdefs.h \
587     /tools/galaxy/galaxycxx/include/vhdrmode.h \
588     /tools/galaxy/galaxycxx/include/vstdlib.h \
589     /tools/galaxy/galaxycxx/include/vstddef.h /usr/include/stddef.h \
590     /tools/galaxy/galaxycxx/include/vmath.h /usr/include/math.h \
591     /tools/galaxy/galaxycxx/include/vunistd.h \
592     /tools/galaxy/galaxycxx/include/vsystypes.h /usr/include/sys/types.h \
593     /usr/include/sys/feature_tests.h /usr/include/sys/isa_defs.h \
594     /usr/include/sys/machtypes.h /usr/include/sys/int_types.h \
595     /usr/include/sys/select.h /usr/include/sys/time.h /usr/include/time.h \
596     /tools/galaxy/galaxycxx/include/vsysfile.h /usr/include/sys/file.h \
597     /usr/include/sys/t_lock.h /usr/include/sys/machlock.h \
598     /usr/include/sys/sleepq.h /usr/include/sys/turnstile.h \
599     /usr/include/sys/param.h /usr/include/sys/unistd.h \
600     /usr/include/sys/pirec.h /usr/include/sys/mutex.h \
601     /usr/include/sys/rwlock.h /usr/include/sys/semaphore.h \
602     /usr/include/sys/condvar.h /tools/galaxy/galaxycxx/include/vsysstat.h \
603     /usr/include/sys/stat.h /tools/galaxy/galaxycxx/include/vlibc.h \
604     /usr/include/unistd.h /usr/include/sys/ioctl.h \
605     /usr/include/sys/termio.h /usr/include/sys/termios.h \
606     /usr/include/sys/ttydev.h /usr/include/sys/filio.h \
607     /usr/include/sys/ioccom.h /usr/include/stdlib.h \
608     /tools/galaxy/galaxycxx/include/vkind.h \
609     /tools/galaxy/galaxycxx/include/vstd.h \
610     /tools/galaxy/galaxycxx/include/viter.h \
611     /tools/galaxy/galaxycxx/include/vex.h \
612     /tools/galaxy/galaxycxx/include/vstdarg.h /usr/include/stdarg.h \
613     /usr/include/sys/va_list.h /tools/galaxy/galaxycxx/include/vstdio.h \
614     /usr/include/stdio.h /tools/galaxy/galaxycxx/include/vsetjmp.h \
615     /usr/include/setjmp.h /tools/galaxy/galaxycxx/include/vdebug.h \
616     /tools/galaxy/galaxycxx/include/vex_c.h \
617     /tools/galaxy/galaxycxx/include/vevent.h \
618     /tools/galaxy/galaxycxx/include/vtimestamp.h \
619     /tools/galaxy/galaxycxx/include/vlonglong.h \
620     /tools/galaxy/galaxycxx/include/vlonglong_c.h \
621     /tools/galaxy/galaxycxx/include/vtimestamp_c.h \
622     /tools/galaxy/galaxycxx/include/vkey.h \
623     /tools/galaxy/galaxycxx/include/vchar.h \
624     /tools/galaxy/galaxycxx/include/vctype.h /usr/include/ctype.h \
625     /tools/galaxy/galaxycxx/include/vstring.h /usr/include/string.h \
626     /tools/galaxy/galaxycxx/include/vmem.h \
627     /tools/galaxy/galaxycxx/include/vmem_c.h \
628     /tools/galaxy/galaxycxx/include/vscribe.h \
629     /tools/galaxy/galaxycxx/include/vscribe_c.h \
630     /tools/galaxy/galaxycxx/include/vchar_c.h \
631     /tools/galaxy/galaxycxx/include/vkey_c.h \
632     /tools/galaxy/galaxycxx/include/vname.h \
633     /tools/galaxy/galaxycxx/include/vname_c.h \
634     /tools/galaxy/galaxycxx/include/vevent_c.h \
635     /tools/galaxy/galaxycxx/include/vloadable.h \
636     /tools/galaxy/galaxycxx/include/vresource.h \
637     /tools/galaxy/galaxycxx/include/vfixed.h \
638     /tools/galaxy/galaxycxx/include/vlimits.h /usr/include/limits.h \
639     /tools/galaxy/galaxycxx/include/vsysparam.h \
640     /tools/galaxy/galaxycxx/include/vdirent.h /usr/include/dirent.h \
641     /usr/include/sys/dirent.h /tools/galaxy/galaxycxx/include/vsysdir.h \
642     /tools/galaxy/galaxycxx/include/vfixed_c.h \
643     /tools/galaxy/galaxycxx/include/vrect.h \
644     /tools/galaxy/galaxycxx/include/vclient.h \
645     /tools/galaxy/galaxycxx/include/vclient_c.h \
646     /tools/galaxy/galaxycxx/include/vrect_c.h \
647     /tools/galaxy/galaxycxx/include/vfs.h \
648     /tools/galaxy/galaxycxx/include/vpool.h \
649     /tools/galaxy/galaxycxx/include/vpool_c.h \
650     /tools/galaxy/galaxycxx/include/vstr.h \
651     /tools/galaxy/galaxycxx/include/vstr_c.h \
652     /tools/galaxy/galaxycxx/include/vfs_c.h \
653     /tools/galaxy/galaxycxx/include/vscrap.h \
654     /tools/galaxy/galaxycxx/include/vdict.h \
655     /tools/galaxy/galaxycxx/include/vfloat.h /usr/include/float.h \
656     /tools/galaxy/galaxycxx/include/vdict_c.h \
657     /tools/galaxy/galaxycxx/include/vclass.h \
658     /tools/galaxy/galaxycxx/include/vclass_c.h \
659     /tools/galaxy/galaxycxx/include/vinstance.h \
660     /tools/galaxy/galaxycxx/include/vinstance_c.h \
661     /tools/galaxy/galaxycxx/include/vdelegator.h \
662     /tools/galaxy/galaxycxx/include/vdelegator_c.h \
663     /tools/galaxy/galaxycxx/include/vscrap_c.h \
664     /tools/galaxy/galaxycxx/include/vresource_c.h \
665     /tools/galaxy/galaxycxx/include/vobject.h \
666     /tools/galaxy/galaxycxx/include/vobject_c.h \
667     /tools/galaxy/galaxycxx/include/vwindow.h \
668     /tools/galaxy/galaxycxx/include/vcolor.h \
669     /tools/galaxy/galaxycxx/include/vbuffer.h \
670     /tools/galaxy/galaxycxx/include/vbuffer_c.h \
671     /tools/galaxy/galaxycxx/include/vpref.h \
672     /tools/galaxy/galaxycxx/include/vpref_c.h \
673     /tools/galaxy/galaxycxx/include/vcolor_c.h \
674     /tools/galaxy/galaxycxx/include/vfont.h \
675     /tools/galaxy/galaxycxx/include/vmatrix.h \
676     /tools/galaxy/galaxycxx/include/vmatrix_c.h \
677     /tools/galaxy/galaxycxx/include/vfont_c.h \
678     /tools/galaxy/galaxycxx/include/vimage.h \
679     /tools/galaxy/galaxycxx/include/vpixmap.h \
680     /tools/galaxy/galaxycxx/include/vpixmap_c.h \
681     /tools/galaxy/galaxycxx/include/vimage_c.h \
682     /tools/galaxy/galaxycxx/include/vdraw.h \
683     /tools/galaxy/galaxycxx/include/vpoint.h \
684     /tools/galaxy/galaxycxx/include/vpoint_c.h \
685     /tools/galaxy/galaxycxx/include/vtransform.h \
686     /tools/galaxy/galaxycxx/include/vtransform_c.h \
687     /tools/galaxy/galaxycxx/include/vdraw_c.h \
688     /tools/galaxy/galaxycxx/include/vcursor.h \
689     /tools/galaxy/galaxycxx/include/vcursor_c.h \
690     /tools/galaxy/galaxycxx/include/vcommand.h \
691     /tools/galaxy/galaxycxx/include/vcommand_c.h \
692     /tools/galaxy/galaxycxx/include/vwindow_c.h \
693     /tools/galaxy/galaxycxx/include/vmenu.h \
694     /tools/galaxy/galaxycxx/include/vlaf.h \
695     /tools/galaxy/galaxycxx/include/vlaf_c.h \
696     /tools/galaxy/galaxycxx/include/vmenu_c.h \
697     /tools/galaxy/galaxycxx/include/vapplication.h \
698     /tools/galaxy/galaxycxx/include/vapplication_c.h \
699     /tools/galaxy/galaxycxx/include/vdialog.h \
700     /tools/galaxy/galaxycxx/include/vspring.h \
701     /tools/galaxy/galaxycxx/include/vspring_c.h \
702     /tools/galaxy/galaxycxx/include/vdialog_c.h \
703     /tools/galaxy/galaxycxx/include/vmenubar.h \
704     /tools/galaxy/galaxycxx/include/vmenubar_c.h \
705     /tools/galaxy/galaxycxx/include/vbutton.h \
706     /tools/galaxy/galaxycxx/include/vbutton_c.h \
707     /tools/galaxy/galaxycxx/include/vtextitem.h \
708     /tools/galaxy/galaxycxx/include/vtextview.h \
709     /tools/galaxy/galaxycxx/include/vtext.h \
710     /tools/galaxy/galaxycxx/include/vundo.h \
711     /tools/galaxy/galaxycxx/include/vundo_c.h \
712     /tools/galaxy/galaxycxx/include/vtext_c.h \
713     /tools/galaxy/galaxycxx/include/vtimer.h \
714     /tools/galaxy/galaxycxx/include/vtimer_c.h \
715     /tools/galaxy/galaxycxx/include/vslider.h \
716     /tools/galaxy/galaxycxx/include/vcontrol.h \
717     /tools/galaxy/galaxycxx/include/vcontrol_c.h \
718     /tools/galaxy/galaxycxx/include/vslider_c.h \
719     /tools/galaxy/galaxycxx/include/vclipboard.h \
720     /tools/galaxy/galaxycxx/include/vclipboard_c.h \
721     /tools/galaxy/galaxycxx/include/vtextview_c.h \
722     /tools/galaxy/galaxycxx/include/vtextitem_c.h \
723     /tools/galaxy/galaxycxx/include/vstartup.h \
724     /tools/galaxy/galaxycxx/include/vstartup_c.h \
725     /tools/galaxy/galaxycxx/include/vtime.h \
726     /tools/galaxy/galaxycxx/include/vcombobox.h \
727     /tools/galaxy/galaxycxx/include/vcontain.h \
728     /tools/galaxy/galaxycxx/include/vcontain_c.h \
729     /tools/galaxy/galaxycxx/include/vlistitem.h \
730     /tools/galaxy/galaxycxx/include/vlistview.h \
731     /tools/galaxy/galaxycxx/include/vlist.h \
732     /tools/galaxy/galaxycxx/include/vlist_c.h \
733     /tools/galaxy/galaxycxx/include/vlistsize.h \
734     /tools/galaxy/galaxycxx/include/vlistsize_c.h \
735     /tools/galaxy/galaxycxx/include/vlistview_c.h \
736     /tools/galaxy/galaxycxx/include/vliststr.h \
737     /tools/galaxy/galaxycxx/include/vliststr_c.h \
738     /tools/galaxy/galaxycxx/include/vlistitem_c.h \
739     /tools/galaxy/galaxycxx/include/vcombobox_c.h \
740     ../../../share/src/opNote/opNoteDb.h ../../../share/epicsH/cb45to63.h \
741     /tools/codebase63/source/d4all.h /tools/codebase63/source/p4port.h \
742     /tools/codebase63/source/d4defs.h /tools/codebase63/source/d4data.h \
743     /tools/codebase63/source/d4declar.h \
744     /tools/codebase63/source/d4inline.h /tools/codebase63/source/f4flag.h \
745     /tools/codebase63/source/e4expr.h /tools/codebase63/source/s4sort.h \
746     /tools/codebase63/source/e4string.h \
747     /tools/codebase63/source/e4error.h /tools/codebase63/source/o4opt.h \
748     /tools/codebase63/source/c4com.h /tools/codebase63/source/c4trans.h \
749     /tools/codebase63/source/r4relate.h ../../../share/src/opNote/opno.h \
750     ../../../share/src/opNote/opNoteUtils.hxx \
751     ../../../share/src/opNote/opNote.hxx \
752     ../../../share/src/tisgalaxylib/textFilters.hxx \
753     ../../../share/src/tisgalaxylib/tisgalaxylib.hxx \
754     /tools/galaxy/galaxycxx/include/vspinner.h \
755     /tools/galaxy/galaxycxx/include/vspinner_c.h \
756     /tools/galaxy/galaxycxx/include/vdomitem.h \
757     /tools/galaxy/galaxycxx/include/vdomview.h \
758     /tools/galaxy/galaxycxx/include/vdomain.h \
759     /tools/galaxy/galaxycxx/include/vdomain_c.h \
760     /tools/galaxy/galaxycxx/include/vdomview_c.h \
761     /tools/galaxy/galaxycxx/include/vdomitem_c.h \
762     /tools/galaxy/galaxycxx/include/vnotice.h \
763     /tools/galaxy/galaxycxx/include/vconfirm.h \
764     /tools/galaxy/galaxycxx/include/vconfirm_c.h \
765     /tools/galaxy/galaxycxx/include/vnotice_c.h
766 tis4000 1.1 opNoteMain.o: ../../../share/src/opNote/opNoteMain.cxx \
767 tis4000 1.2 /tools/galaxy/galaxycxx/include/vport.h \
768     /tools/galaxy/galaxycxx/include/vportenv.h \
769     /tools/galaxy/galaxycxx/include/vhdrdefs.h \
770     /tools/galaxy/galaxycxx/include/vhdrmode.h \
771     /tools/galaxy/galaxycxx/include/vstdlib.h \
772     /tools/galaxy/galaxycxx/include/vstddef.h /usr/include/stddef.h \
773     /tools/galaxy/galaxycxx/include/vmath.h /usr/include/math.h \
774     /tools/galaxy/galaxycxx/include/vunistd.h \
775     /tools/galaxy/galaxycxx/include/vsystypes.h /usr/include/sys/types.h \
776     /usr/include/sys/feature_tests.h /usr/include/sys/isa_defs.h \
777     /usr/include/sys/machtypes.h /usr/include/sys/int_types.h \
778     /usr/include/sys/select.h /usr/include/sys/time.h /usr/include/time.h \
779     /tools/galaxy/galaxycxx/include/vsysfile.h /usr/include/sys/file.h \
780     /usr/include/sys/t_lock.h /usr/include/sys/machlock.h \
781     /usr/include/sys/sleepq.h /usr/include/sys/turnstile.h \
782     /usr/include/sys/param.h /usr/include/sys/unistd.h \
783     /usr/include/sys/pirec.h /usr/include/sys/mutex.h \
784     /usr/include/sys/rwlock.h /usr/include/sys/semaphore.h \
785     /usr/include/sys/condvar.h /tools/galaxy/galaxycxx/include/vsysstat.h \
786     /usr/include/sys/stat.h /tools/galaxy/galaxycxx/include/vlibc.h \
787     /usr/include/unistd.h /usr/include/sys/ioctl.h \
788     /usr/include/sys/termio.h /usr/include/sys/termios.h \
789     /usr/include/sys/ttydev.h /usr/include/sys/filio.h \
790     /usr/include/sys/ioccom.h /usr/include/stdlib.h \
791     /tools/galaxy/galaxycxx/include/vkind.h \
792     /tools/galaxy/galaxycxx/include/vstd.h \
793     /tools/galaxy/galaxycxx/include/viter.h \
794     /tools/galaxy/galaxycxx/include/vex.h \
795     /tools/galaxy/galaxycxx/include/vstdarg.h /usr/include/stdarg.h \
796     /usr/include/sys/va_list.h /tools/galaxy/galaxycxx/include/vstdio.h \
797     /usr/include/stdio.h /tools/galaxy/galaxycxx/include/vsetjmp.h \
798     /usr/include/setjmp.h /tools/galaxy/galaxycxx/include/vdebug.h \
799     /tools/galaxy/galaxycxx/include/vex_c.h \
800     /tools/galaxy/galaxycxx/include/vevent.h \
801     /tools/galaxy/galaxycxx/include/vtimestamp.h \
802     /tools/galaxy/galaxycxx/include/vlonglong.h \
803     /tools/galaxy/galaxycxx/include/vlonglong_c.h \
804     /tools/galaxy/galaxycxx/include/vtimestamp_c.h \
805     /tools/galaxy/galaxycxx/include/vkey.h \
806     /tools/galaxy/galaxycxx/include/vchar.h \
807     /tools/galaxy/galaxycxx/include/vctype.h /usr/include/ctype.h \
808     /tools/galaxy/galaxycxx/include/vstring.h /usr/include/string.h \
809     /tools/galaxy/galaxycxx/include/vmem.h \
810     /tools/galaxy/galaxycxx/include/vmem_c.h \
811     /tools/galaxy/galaxycxx/include/vscribe.h \
812     /tools/galaxy/galaxycxx/include/vscribe_c.h \
813     /tools/galaxy/galaxycxx/include/vchar_c.h \
814     /tools/galaxy/galaxycxx/include/vkey_c.h \
815     /tools/galaxy/galaxycxx/include/vname.h \
816     /tools/galaxy/galaxycxx/include/vname_c.h \
817     /tools/galaxy/galaxycxx/include/vevent_c.h \
818     /tools/galaxy/galaxycxx/include/vloadable.h \
819     /tools/galaxy/galaxycxx/include/vresource.h \
820     /tools/galaxy/galaxycxx/include/vfixed.h \
821     /tools/galaxy/galaxycxx/include/vlimits.h /usr/include/limits.h \
822     /tools/galaxy/galaxycxx/include/vsysparam.h \
823     /tools/galaxy/galaxycxx/include/vdirent.h /usr/include/dirent.h \
824     /usr/include/sys/dirent.h /tools/galaxy/galaxycxx/include/vsysdir.h \
825     /tools/galaxy/galaxycxx/include/vfixed_c.h \
826     /tools/galaxy/galaxycxx/include/vrect.h \
827     /tools/galaxy/galaxycxx/include/vclient.h \
828     /tools/galaxy/galaxycxx/include/vclient_c.h \
829     /tools/galaxy/galaxycxx/include/vrect_c.h \
830     /tools/galaxy/galaxycxx/include/vfs.h \
831     /tools/galaxy/galaxycxx/include/vpool.h \
832     /tools/galaxy/galaxycxx/include/vpool_c.h \
833     /tools/galaxy/galaxycxx/include/vstr.h \
834     /tools/galaxy/galaxycxx/include/vstr_c.h \
835     /tools/galaxy/galaxycxx/include/vfs_c.h \
836     /tools/galaxy/galaxycxx/include/vscrap.h \
837     /tools/galaxy/galaxycxx/include/vdict.h \
838     /tools/galaxy/galaxycxx/include/vfloat.h /usr/include/float.h \
839     /tools/galaxy/galaxycxx/include/vdict_c.h \
840     /tools/galaxy/galaxycxx/include/vclass.h \
841     /tools/galaxy/galaxycxx/include/vclass_c.h \
842     /tools/galaxy/galaxycxx/include/vinstance.h \
843     /tools/galaxy/galaxycxx/include/vinstance_c.h \
844     /tools/galaxy/galaxycxx/include/vdelegator.h \
845     /tools/galaxy/galaxycxx/include/vdelegator_c.h \
846     /tools/galaxy/galaxycxx/include/vscrap_c.h \
847     /tools/galaxy/galaxycxx/include/vresource_c.h \
848     /tools/galaxy/galaxycxx/include/vobject.h \
849     /tools/galaxy/galaxycxx/include/vobject_c.h \
850     /tools/galaxy/galaxycxx/include/vwindow.h \
851     /tools/galaxy/galaxycxx/include/vcolor.h \
852     /tools/galaxy/galaxycxx/include/vbuffer.h \
853     /tools/galaxy/galaxycxx/include/vbuffer_c.h \
854     /tools/galaxy/galaxycxx/include/vpref.h \
855     /tools/galaxy/galaxycxx/include/vpref_c.h \
856     /tools/galaxy/galaxycxx/include/vcolor_c.h \
857     /tools/galaxy/galaxycxx/include/vfont.h \
858     /tools/galaxy/galaxycxx/include/vmatrix.h \
859     /tools/galaxy/galaxycxx/include/vmatrix_c.h \
860     /tools/galaxy/galaxycxx/include/vfont_c.h \
861     /tools/galaxy/galaxycxx/include/vimage.h \
862     /tools/galaxy/galaxycxx/include/vpixmap.h \
863     /tools/galaxy/galaxycxx/include/vpixmap_c.h \
864     /tools/galaxy/galaxycxx/include/vimage_c.h \
865     /tools/galaxy/galaxycxx/include/vdraw.h \
866     /tools/galaxy/galaxycxx/include/vpoint.h \
867     /tools/galaxy/galaxycxx/include/vpoint_c.h \
868     /tools/galaxy/galaxycxx/include/vtransform.h \
869     /tools/galaxy/galaxycxx/include/vtransform_c.h \
870     /tools/galaxy/galaxycxx/include/vdraw_c.h \
871     /tools/galaxy/galaxycxx/include/vcursor.h \
872     /tools/galaxy/galaxycxx/include/vcursor_c.h \
873     /tools/galaxy/galaxycxx/include/vcommand.h \
874     /tools/galaxy/galaxycxx/include/vcommand_c.h \
875     /tools/galaxy/galaxycxx/include/vwindow_c.h \
876     /tools/galaxy/galaxycxx/include/vmenu.h \
877     /tools/galaxy/galaxycxx/include/vlaf.h \
878     /tools/galaxy/galaxycxx/include/vlaf_c.h \
879     /tools/galaxy/galaxycxx/include/vmenu_c.h \
880     /tools/galaxy/galaxycxx/include/vapplication.h \
881     /tools/galaxy/galaxycxx/include/vapplication_c.h \
882     /tools/galaxy/galaxycxx/include/vdialog.h \
883     /tools/galaxy/galaxycxx/include/vspring.h \
884     /tools/galaxy/galaxycxx/include/vspring_c.h \
885     /tools/galaxy/galaxycxx/include/vdialog_c.h \
886     /tools/galaxy/galaxycxx/include/vmenubar.h \
887     /tools/galaxy/galaxycxx/include/vmenubar_c.h \
888     /tools/galaxy/galaxycxx/include/vbutton.h \
889     /tools/galaxy/galaxycxx/include/vbutton_c.h \
890     /tools/galaxy/galaxycxx/include/vtextitem.h \
891     /tools/galaxy/galaxycxx/include/vtextview.h \
892     /tools/galaxy/galaxycxx/include/vtext.h \
893     /tools/galaxy/galaxycxx/include/vundo.h \
894     /tools/galaxy/galaxycxx/include/vundo_c.h \
895     /tools/galaxy/galaxycxx/include/vtext_c.h \
896     /tools/galaxy/galaxycxx/include/vtimer.h \
897     /tools/galaxy/galaxycxx/include/vtimer_c.h \
898     /tools/galaxy/galaxycxx/include/vslider.h \
899     /tools/galaxy/galaxycxx/include/vcontrol.h \
900     /tools/galaxy/galaxycxx/include/vcontrol_c.h \
901     /tools/galaxy/galaxycxx/include/vslider_c.h \
902     /tools/galaxy/galaxycxx/include/vclipboard.h \
903     /tools/galaxy/galaxycxx/include/vclipboard_c.h \
904     /tools/galaxy/galaxycxx/include/vtextview_c.h \
905     /tools/galaxy/galaxycxx/include/vtextitem_c.h \
906     /tools/galaxy/galaxycxx/include/vstartup.h \
907     /tools/galaxy/galaxycxx/include/vstartup_c.h \
908     /tools/galaxy/galaxycxx/include/vtime.h \
909     ../../../share/src/opNote/opNoteDb.h ../../../share/epicsH/cb45to63.h \
910     /tools/codebase63/source/d4all.h /tools/codebase63/source/p4port.h \
911     /tools/codebase63/source/d4defs.h /tools/codebase63/source/d4data.h \
912     /tools/codebase63/source/d4declar.h \
913     /tools/codebase63/source/d4inline.h /tools/codebase63/source/f4flag.h \
914     /tools/codebase63/source/e4expr.h /tools/codebase63/source/s4sort.h \
915     /tools/codebase63/source/e4string.h \
916     /tools/codebase63/source/e4error.h /tools/codebase63/source/o4opt.h \
917     /tools/codebase63/source/c4com.h /tools/codebase63/source/c4trans.h \
918     /tools/codebase63/source/r4relate.h \
919     ../../../share/src/libtis/OperPriv.h \
920     ../../../share/epicsH/OperPrivErr.h ../../../share/src/opNote/opno.h \
921     ../../../share/src/opNote/opNoteUtils.hxx \
922     /tools/galaxy/galaxycxx/include/vcombobox.h \
923     /tools/galaxy/galaxycxx/include/vcontain.h \
924     /tools/galaxy/galaxycxx/include/vcontain_c.h \
925     /tools/galaxy/galaxycxx/include/vlistitem.h \
926     /tools/galaxy/galaxycxx/include/vlistview.h \
927     /tools/galaxy/galaxycxx/include/vlist.h \
928     /tools/galaxy/galaxycxx/include/vlist_c.h \
929     /tools/galaxy/galaxycxx/include/vlistsize.h \
930     /tools/galaxy/galaxycxx/include/vlistsize_c.h \
931     /tools/galaxy/galaxycxx/include/vlistview_c.h \
932     /tools/galaxy/galaxycxx/include/vliststr.h \
933     /tools/galaxy/galaxycxx/include/vliststr_c.h \
934     /tools/galaxy/galaxycxx/include/vlistitem_c.h \
935     /tools/galaxy/galaxycxx/include/vcombobox_c.h \
936     ../../../share/src/opNote/opNote.hxx \
937     ../../../share/src/tisgalaxylib/textFilters.hxx \
938     ../../../share/src/tisgalaxylib/tisgalaxylib.hxx \
939     /tools/galaxy/galaxycxx/include/vspinner.h \
940     /tools/galaxy/galaxycxx/include/vspinner_c.h \
941     /tools/galaxy/galaxycxx/include/vdomitem.h \
942     /tools/galaxy/galaxycxx/include/vdomview.h \
943     /tools/galaxy/galaxycxx/include/vdomain.h \
944     /tools/galaxy/galaxycxx/include/vdomain_c.h \
945     /tools/galaxy/galaxycxx/include/vdomview_c.h \
946     /tools/galaxy/galaxycxx/include/vdomitem_c.h \
947     /tools/galaxy/galaxycxx/include/vnotice.h \
948     /tools/galaxy/galaxycxx/include/vconfirm.h \
949     /tools/galaxy/galaxycxx/include/vconfirm_c.h \
950     /tools/galaxy/galaxycxx/include/vnotice_c.h
951 tis4000 1.1 opNoteSearch.o: ../../../share/src/opNote/opNoteSearch.cxx \
952 tis4000 1.2 /tools/galaxy/galaxycxx/include/vport.h \
953     /tools/galaxy/galaxycxx/include/vportenv.h \
954     /tools/galaxy/galaxycxx/include/vhdrdefs.h \
955     /tools/galaxy/galaxycxx/include/vhdrmode.h \
956     /tools/galaxy/galaxycxx/include/vstdlib.h \
957     /tools/galaxy/galaxycxx/include/vstddef.h /usr/include/stddef.h \
958     /tools/galaxy/galaxycxx/include/vmath.h /usr/include/math.h \
959     /tools/galaxy/galaxycxx/include/vunistd.h \
960     /tools/galaxy/galaxycxx/include/vsystypes.h /usr/include/sys/types.h \
961     /usr/include/sys/feature_tests.h /usr/include/sys/isa_defs.h \
962     /usr/include/sys/machtypes.h /usr/include/sys/int_types.h \
963     /usr/include/sys/select.h /usr/include/sys/time.h /usr/include/time.h \
964     /tools/galaxy/galaxycxx/include/vsysfile.h /usr/include/sys/file.h \
965     /usr/include/sys/t_lock.h /usr/include/sys/machlock.h \
966     /usr/include/sys/sleepq.h /usr/include/sys/turnstile.h \
967     /usr/include/sys/param.h /usr/include/sys/unistd.h \
968     /usr/include/sys/pirec.h /usr/include/sys/mutex.h \
969     /usr/include/sys/rwlock.h /usr/include/sys/semaphore.h \
970     /usr/include/sys/condvar.h /tools/galaxy/galaxycxx/include/vsysstat.h \
971     /usr/include/sys/stat.h /tools/galaxy/galaxycxx/include/vlibc.h \
972     /usr/include/unistd.h /usr/include/sys/ioctl.h \
973     /usr/include/sys/termio.h /usr/include/sys/termios.h \
974     /usr/include/sys/ttydev.h /usr/include/sys/filio.h \
975     /usr/include/sys/ioccom.h /usr/include/stdlib.h \
976     /tools/galaxy/galaxycxx/include/vkind.h \
977     /tools/galaxy/galaxycxx/include/vstd.h \
978     /tools/galaxy/galaxycxx/include/viter.h \
979     /tools/galaxy/galaxycxx/include/vex.h \
980     /tools/galaxy/galaxycxx/include/vstdarg.h /usr/include/stdarg.h \
981     /usr/include/sys/va_list.h /tools/galaxy/galaxycxx/include/vstdio.h \
982     /usr/include/stdio.h /tools/galaxy/galaxycxx/include/vsetjmp.h \
983     /usr/include/setjmp.h /tools/galaxy/galaxycxx/include/vdebug.h \
984     /tools/galaxy/galaxycxx/include/vex_c.h \
985     /tools/galaxy/galaxycxx/include/vevent.h \
986     /tools/galaxy/galaxycxx/include/vtimestamp.h \
987     /tools/galaxy/galaxycxx/include/vlonglong.h \
988     /tools/galaxy/galaxycxx/include/vlonglong_c.h \
989     /tools/galaxy/galaxycxx/include/vtimestamp_c.h \
990     /tools/galaxy/galaxycxx/include/vkey.h \
991     /tools/galaxy/galaxycxx/include/vchar.h \
992     /tools/galaxy/galaxycxx/include/vctype.h /usr/include/ctype.h \
993     /tools/galaxy/galaxycxx/include/vstring.h /usr/include/string.h \
994     /tools/galaxy/galaxycxx/include/vmem.h \
995     /tools/galaxy/galaxycxx/include/vmem_c.h \
996     /tools/galaxy/galaxycxx/include/vscribe.h \
997     /tools/galaxy/galaxycxx/include/vscribe_c.h \
998     /tools/galaxy/galaxycxx/include/vchar_c.h \
999     /tools/galaxy/galaxycxx/include/vkey_c.h \
1000     /tools/galaxy/galaxycxx/include/vname.h \
1001     /tools/galaxy/galaxycxx/include/vname_c.h \
1002     /tools/galaxy/galaxycxx/include/vevent_c.h \
1003     /tools/galaxy/galaxycxx/include/vloadable.h \
1004     /tools/galaxy/galaxycxx/include/vresource.h \
1005     /tools/galaxy/galaxycxx/include/vfixed.h \
1006     /tools/galaxy/galaxycxx/include/vlimits.h /usr/include/limits.h \
1007     /tools/galaxy/galaxycxx/include/vsysparam.h \
1008     /tools/galaxy/galaxycxx/include/vdirent.h /usr/include/dirent.h \
1009     /usr/include/sys/dirent.h /tools/galaxy/galaxycxx/include/vsysdir.h \
1010     /tools/galaxy/galaxycxx/include/vfixed_c.h \
1011     /tools/galaxy/galaxycxx/include/vrect.h \
1012     /tools/galaxy/galaxycxx/include/vclient.h \
1013     /tools/galaxy/galaxycxx/include/vclient_c.h \
1014     /tools/galaxy/galaxycxx/include/vrect_c.h \
1015     /tools/galaxy/galaxycxx/include/vfs.h \
1016     /tools/galaxy/galaxycxx/include/vpool.h \
1017     /tools/galaxy/galaxycxx/include/vpool_c.h \
1018     /tools/galaxy/galaxycxx/include/vstr.h \
1019     /tools/galaxy/galaxycxx/include/vstr_c.h \
1020     /tools/galaxy/galaxycxx/include/vfs_c.h \
1021     /tools/galaxy/galaxycxx/include/vscrap.h \
1022     /tools/galaxy/galaxycxx/include/vdict.h \
1023     /tools/galaxy/galaxycxx/include/vfloat.h /usr/include/float.h \
1024     /tools/galaxy/galaxycxx/include/vdict_c.h \
1025     /tools/galaxy/galaxycxx/include/vclass.h \
1026     /tools/galaxy/galaxycxx/include/vclass_c.h \
1027     /tools/galaxy/galaxycxx/include/vinstance.h \
1028     /tools/galaxy/galaxycxx/include/vinstance_c.h \
1029     /tools/galaxy/galaxycxx/include/vdelegator.h \
1030     /tools/galaxy/galaxycxx/include/vdelegator_c.h \
1031     /tools/galaxy/galaxycxx/include/vscrap_c.h \
1032     /tools/galaxy/galaxycxx/include/vresource_c.h \
1033     /tools/galaxy/galaxycxx/include/vobject.h \
1034     /tools/galaxy/galaxycxx/include/vobject_c.h \
1035     /tools/galaxy/galaxycxx/include/vwindow.h \
1036     /tools/galaxy/galaxycxx/include/vcolor.h \
1037     /tools/galaxy/galaxycxx/include/vbuffer.h \
1038     /tools/galaxy/galaxycxx/include/vbuffer_c.h \
1039     /tools/galaxy/galaxycxx/include/vpref.h \
1040     /tools/galaxy/galaxycxx/include/vpref_c.h \
1041     /tools/galaxy/galaxycxx/include/vcolor_c.h \
1042     /tools/galaxy/galaxycxx/include/vfont.h \
1043     /tools/galaxy/galaxycxx/include/vmatrix.h \
1044     /tools/galaxy/galaxycxx/include/vmatrix_c.h \
1045     /tools/galaxy/galaxycxx/include/vfont_c.h \
1046     /tools/galaxy/galaxycxx/include/vimage.h \
1047     /tools/galaxy/galaxycxx/include/vpixmap.h \
1048     /tools/galaxy/galaxycxx/include/vpixmap_c.h \
1049     /tools/galaxy/galaxycxx/include/vimage_c.h \
1050     /tools/galaxy/galaxycxx/include/vdraw.h \
1051     /tools/galaxy/galaxycxx/include/vpoint.h \
1052     /tools/galaxy/galaxycxx/include/vpoint_c.h \
1053     /tools/galaxy/galaxycxx/include/vtransform.h \
1054     /tools/galaxy/galaxycxx/include/vtransform_c.h \
1055     /tools/galaxy/galaxycxx/include/vdraw_c.h \
1056     /tools/galaxy/galaxycxx/include/vcursor.h \
1057     /tools/galaxy/galaxycxx/include/vcursor_c.h \
1058     /tools/galaxy/galaxycxx/include/vcommand.h \
1059     /tools/galaxy/galaxycxx/include/vcommand_c.h \
1060     /tools/galaxy/galaxycxx/include/vwindow_c.h \
1061     /tools/galaxy/galaxycxx/include/vmenu.h \
1062     /tools/galaxy/galaxycxx/include/vlaf.h \
1063     /tools/galaxy/galaxycxx/include/vlaf_c.h \
1064     /tools/galaxy/galaxycxx/include/vmenu_c.h \
1065     /tools/galaxy/galaxycxx/include/vapplication.h \
1066     /tools/galaxy/galaxycxx/include/vapplication_c.h \
1067     /tools/galaxy/galaxycxx/include/vdialog.h \
1068     /tools/galaxy/galaxycxx/include/vspring.h \
1069     /tools/galaxy/galaxycxx/include/vspring_c.h \
1070     /tools/galaxy/galaxycxx/include/vdialog_c.h \
1071     /tools/galaxy/galaxycxx/include/vmenubar.h \
1072     /tools/galaxy/galaxycxx/include/vmenubar_c.h \
1073     /tools/galaxy/galaxycxx/include/vbutton.h \
1074     /tools/galaxy/galaxycxx/include/vbutton_c.h \
1075     /tools/galaxy/galaxycxx/include/vtextitem.h \
1076     /tools/galaxy/galaxycxx/include/vtextview.h \
1077     /tools/galaxy/galaxycxx/include/vtext.h \
1078     /tools/galaxy/galaxycxx/include/vundo.h \
1079     /tools/galaxy/galaxycxx/include/vundo_c.h \
1080     /tools/galaxy/galaxycxx/include/vtext_c.h \
1081     /tools/galaxy/galaxycxx/include/vtimer.h \
1082     /tools/galaxy/galaxycxx/include/vtimer_c.h \
1083     /tools/galaxy/galaxycxx/include/vslider.h \
1084     /tools/galaxy/galaxycxx/include/vcontrol.h \
1085     /tools/galaxy/galaxycxx/include/vcontrol_c.h \
1086     /tools/galaxy/galaxycxx/include/vslider_c.h \
1087     /tools/galaxy/galaxycxx/include/vclipboard.h \
1088     /tools/galaxy/galaxycxx/include/vclipboard_c.h \
1089     /tools/galaxy/galaxycxx/include/vtextview_c.h \
1090     /tools/galaxy/galaxycxx/include/vtextitem_c.h \
1091     /tools/galaxy/galaxycxx/include/vstartup.h \
1092     /tools/galaxy/galaxycxx/include/vstartup_c.h \
1093     /tools/galaxy/galaxycxx/include/vtime.h \
1094     ../../../share/src/opNote/opNoteDb.h ../../../share/epicsH/cb45to63.h \
1095     /tools/codebase63/source/d4all.h /tools/codebase63/source/p4port.h \
1096     /tools/codebase63/source/d4defs.h /tools/codebase63/source/d4data.h \
1097     /tools/codebase63/source/d4declar.h \
1098     /tools/codebase63/source/d4inline.h /tools/codebase63/source/f4flag.h \
1099     /tools/codebase63/source/e4expr.h /tools/codebase63/source/s4sort.h \
1100     /tools/codebase63/source/e4string.h \
1101     /tools/codebase63/source/e4error.h /tools/codebase63/source/o4opt.h \
1102     /tools/codebase63/source/c4com.h /tools/codebase63/source/c4trans.h \
1103     /tools/codebase63/source/r4relate.h ../../../share/src/opNote/opno.h \
1104     ../../../share/src/opNote/opNoteUtils.hxx \
1105     /tools/galaxy/galaxycxx/include/vcombobox.h \
1106     /tools/galaxy/galaxycxx/include/vcontain.h \
1107     /tools/galaxy/galaxycxx/include/vcontain_c.h \
1108     /tools/galaxy/galaxycxx/include/vlistitem.h \
1109     /tools/galaxy/galaxycxx/include/vlistview.h \
1110     /tools/galaxy/galaxycxx/include/vlist.h \
1111     /tools/galaxy/galaxycxx/include/vlist_c.h \
1112     /tools/galaxy/galaxycxx/include/vlistsize.h \
1113     /tools/galaxy/galaxycxx/include/vlistsize_c.h \
1114     /tools/galaxy/galaxycxx/include/vlistview_c.h \
1115     /tools/galaxy/galaxycxx/include/vliststr.h \
1116     /tools/galaxy/galaxycxx/include/vliststr_c.h \
1117     /tools/galaxy/galaxycxx/include/vlistitem_c.h \
1118     /tools/galaxy/galaxycxx/include/vcombobox_c.h \
1119     ../../../share/src/opNote/opNote.hxx \
1120     ../../../share/src/tisgalaxylib/textFilters.hxx \
1121     ../../../share/src/tisgalaxylib/tisgalaxylib.hxx \
1122     /tools/galaxy/galaxycxx/include/vspinner.h \
1123     /tools/galaxy/galaxycxx/include/vspinner_c.h \
1124     /tools/galaxy/galaxycxx/include/vdomitem.h \
1125     /tools/galaxy/galaxycxx/include/vdomview.h \
1126     /tools/galaxy/galaxycxx/include/vdomain.h \
1127     /tools/galaxy/galaxycxx/include/vdomain_c.h \
1128     /tools/galaxy/galaxycxx/include/vdomview_c.h \
1129     /tools/galaxy/galaxycxx/include/vdomitem_c.h \
1130     /tools/galaxy/galaxycxx/include/vnotice.h \
1131     /tools/galaxy/galaxycxx/include/vconfirm.h \
1132     /tools/galaxy/galaxycxx/include/vconfirm_c.h \
1133     /tools/galaxy/galaxycxx/include/vnotice_c.h
1134 tis4000 1.1 opNoteUtils.o: ../../../share/src/opNote/opNoteUtils.cxx \
1135 tis4000 1.2 /tools/galaxy/galaxycxx/include/vport.h \
1136     /tools/galaxy/galaxycxx/include/vportenv.h \
1137     /tools/galaxy/galaxycxx/include/vhdrdefs.h \
1138     /tools/galaxy/galaxycxx/include/vhdrmode.h \
1139     /tools/galaxy/galaxycxx/include/vstdlib.h \
1140     /tools/galaxy/galaxycxx/include/vstddef.h /usr/include/stddef.h \
1141     /tools/galaxy/galaxycxx/include/vmath.h /usr/include/math.h \
1142     /tools/galaxy/galaxycxx/include/vunistd.h \
1143     /tools/galaxy/galaxycxx/include/vsystypes.h /usr/include/sys/types.h \
1144     /usr/include/sys/feature_tests.h /usr/include/sys/isa_defs.h \
1145     /usr/include/sys/machtypes.h /usr/include/sys/int_types.h \
1146     /usr/include/sys/select.h /usr/include/sys/time.h /usr/include/time.h \
1147     /tools/galaxy/galaxycxx/include/vsysfile.h /usr/include/sys/file.h \
1148     /usr/include/sys/t_lock.h /usr/include/sys/machlock.h \
1149     /usr/include/sys/sleepq.h /usr/include/sys/turnstile.h \
1150     /usr/include/sys/param.h /usr/include/sys/unistd.h \
1151     /usr/include/sys/pirec.h /usr/include/sys/mutex.h \
1152     /usr/include/sys/rwlock.h /usr/include/sys/semaphore.h \
1153     /usr/include/sys/condvar.h /tools/galaxy/galaxycxx/include/vsysstat.h \
1154     /usr/include/sys/stat.h /tools/galaxy/galaxycxx/include/vlibc.h \
1155     /usr/include/unistd.h /usr/include/sys/ioctl.h \
1156     /usr/include/sys/termio.h /usr/include/sys/termios.h \
1157     /usr/include/sys/ttydev.h /usr/include/sys/filio.h \
1158     /usr/include/sys/ioccom.h /usr/include/stdlib.h \
1159     /tools/galaxy/galaxycxx/include/vkind.h \
1160     /tools/galaxy/galaxycxx/include/vstd.h \
1161     /tools/galaxy/galaxycxx/include/viter.h \
1162     /tools/galaxy/galaxycxx/include/vex.h \
1163     /tools/galaxy/galaxycxx/include/vstdarg.h /usr/include/stdarg.h \
1164     /usr/include/sys/va_list.h /tools/galaxy/galaxycxx/include/vstdio.h \
1165     /usr/include/stdio.h /tools/galaxy/galaxycxx/include/vsetjmp.h \
1166     /usr/include/setjmp.h /tools/galaxy/galaxycxx/include/vdebug.h \
1167     /tools/galaxy/galaxycxx/include/vex_c.h \
1168     /tools/galaxy/galaxycxx/include/vevent.h \
1169     /tools/galaxy/galaxycxx/include/vtimestamp.h \
1170     /tools/galaxy/galaxycxx/include/vlonglong.h \
1171     /tools/galaxy/galaxycxx/include/vlonglong_c.h \
1172     /tools/galaxy/galaxycxx/include/vtimestamp_c.h \
1173     /tools/galaxy/galaxycxx/include/vkey.h \
1174     /tools/galaxy/galaxycxx/include/vchar.h \
1175     /tools/galaxy/galaxycxx/include/vctype.h /usr/include/ctype.h \
1176     /tools/galaxy/galaxycxx/include/vstring.h /usr/include/string.h \
1177     /tools/galaxy/galaxycxx/include/vmem.h \
1178     /tools/galaxy/galaxycxx/include/vmem_c.h \
1179     /tools/galaxy/galaxycxx/include/vscribe.h \
1180     /tools/galaxy/galaxycxx/include/vscribe_c.h \
1181     /tools/galaxy/galaxycxx/include/vchar_c.h \
1182     /tools/galaxy/galaxycxx/include/vkey_c.h \
1183     /tools/galaxy/galaxycxx/include/vname.h \
1184     /tools/galaxy/galaxycxx/include/vname_c.h \
1185     /tools/galaxy/galaxycxx/include/vevent_c.h \
1186     /tools/galaxy/galaxycxx/include/vloadable.h \
1187     /tools/galaxy/galaxycxx/include/vresource.h \
1188     /tools/galaxy/galaxycxx/include/vfixed.h \
1189     /tools/galaxy/galaxycxx/include/vlimits.h /usr/include/limits.h \
1190     /tools/galaxy/galaxycxx/include/vsysparam.h \
1191     /tools/galaxy/galaxycxx/include/vdirent.h /usr/include/dirent.h \
1192     /usr/include/sys/dirent.h /tools/galaxy/galaxycxx/include/vsysdir.h \
1193     /tools/galaxy/galaxycxx/include/vfixed_c.h \
1194     /tools/galaxy/galaxycxx/include/vrect.h \
1195     /tools/galaxy/galaxycxx/include/vclient.h \
1196     /tools/galaxy/galaxycxx/include/vclient_c.h \
1197     /tools/galaxy/galaxycxx/include/vrect_c.h \
1198     /tools/galaxy/galaxycxx/include/vfs.h \
1199     /tools/galaxy/galaxycxx/include/vpool.h \
1200     /tools/galaxy/galaxycxx/include/vpool_c.h \
1201     /tools/galaxy/galaxycxx/include/vstr.h \
1202     /tools/galaxy/galaxycxx/include/vstr_c.h \
1203     /tools/galaxy/galaxycxx/include/vfs_c.h \
1204     /tools/galaxy/galaxycxx/include/vscrap.h \
1205     /tools/galaxy/galaxycxx/include/vdict.h \
1206     /tools/galaxy/galaxycxx/include/vfloat.h /usr/include/float.h \
1207     /tools/galaxy/galaxycxx/include/vdict_c.h \
1208     /tools/galaxy/galaxycxx/include/vclass.h \
1209     /tools/galaxy/galaxycxx/include/vclass_c.h \
1210     /tools/galaxy/galaxycxx/include/vinstance.h \
1211     /tools/galaxy/galaxycxx/include/vinstance_c.h \
1212     /tools/galaxy/galaxycxx/include/vdelegator.h \
1213     /tools/galaxy/galaxycxx/include/vdelegator_c.h \
1214     /tools/galaxy/galaxycxx/include/vscrap_c.h \
1215     /tools/galaxy/galaxycxx/include/vresource_c.h \
1216     /tools/galaxy/galaxycxx/include/vobject.h \
1217     /tools/galaxy/galaxycxx/include/vobject_c.h \
1218     /tools/galaxy/galaxycxx/include/vwindow.h \
1219     /tools/galaxy/galaxycxx/include/vcolor.h \
1220     /tools/galaxy/galaxycxx/include/vbuffer.h \
1221     /tools/galaxy/galaxycxx/include/vbuffer_c.h \
1222     /tools/galaxy/galaxycxx/include/vpref.h \
1223     /tools/galaxy/galaxycxx/include/vpref_c.h \
1224     /tools/galaxy/galaxycxx/include/vcolor_c.h \
1225     /tools/galaxy/galaxycxx/include/vfont.h \
1226     /tools/galaxy/galaxycxx/include/vmatrix.h \
1227     /tools/galaxy/galaxycxx/include/vmatrix_c.h \
1228     /tools/galaxy/galaxycxx/include/vfont_c.h \
1229     /tools/galaxy/galaxycxx/include/vimage.h \
1230     /tools/galaxy/galaxycxx/include/vpixmap.h \
1231     /tools/galaxy/galaxycxx/include/vpixmap_c.h \
1232     /tools/galaxy/galaxycxx/include/vimage_c.h \
1233     /tools/galaxy/galaxycxx/include/vdraw.h \
1234     /tools/galaxy/galaxycxx/include/vpoint.h \
1235     /tools/galaxy/galaxycxx/include/vpoint_c.h \
1236     /tools/galaxy/galaxycxx/include/vtransform.h \
1237     /tools/galaxy/galaxycxx/include/vtransform_c.h \
1238     /tools/galaxy/galaxycxx/include/vdraw_c.h \
1239     /tools/galaxy/galaxycxx/include/vcursor.h \
1240     /tools/galaxy/galaxycxx/include/vcursor_c.h \
1241     /tools/galaxy/galaxycxx/include/vcommand.h \
1242     /tools/galaxy/galaxycxx/include/vcommand_c.h \
1243     /tools/galaxy/galaxycxx/include/vwindow_c.h \
1244     /tools/galaxy/galaxycxx/include/vmenu.h \
1245     /tools/galaxy/galaxycxx/include/vlaf.h \
1246     /tools/galaxy/galaxycxx/include/vlaf_c.h \
1247     /tools/galaxy/galaxycxx/include/vmenu_c.h \
1248     /tools/galaxy/galaxycxx/include/vapplication.h \
1249     /tools/galaxy/galaxycxx/include/vapplication_c.h \
1250     /tools/galaxy/galaxycxx/include/vdialog.h \
1251     /tools/galaxy/galaxycxx/include/vspring.h \
1252     /tools/galaxy/galaxycxx/include/vspring_c.h \
1253     /tools/galaxy/galaxycxx/include/vdialog_c.h \
1254     /tools/galaxy/galaxycxx/include/vmenubar.h \
1255     /tools/galaxy/galaxycxx/include/vmenubar_c.h \
1256     /tools/galaxy/galaxycxx/include/vbutton.h \
1257     /tools/galaxy/galaxycxx/include/vbutton_c.h \
1258     /tools/galaxy/galaxycxx/include/vtextitem.h \
1259     /tools/galaxy/galaxycxx/include/vtextview.h \
1260     /tools/galaxy/galaxycxx/include/vtext.h \
1261     /tools/galaxy/galaxycxx/include/vundo.h \
1262     /tools/galaxy/galaxycxx/include/vundo_c.h \
1263     /tools/galaxy/galaxycxx/include/vtext_c.h \
1264     /tools/galaxy/galaxycxx/include/vtimer.h \
1265     /tools/galaxy/galaxycxx/include/vtimer_c.h \
1266     /tools/galaxy/galaxycxx/include/vslider.h \
1267     /tools/galaxy/galaxycxx/include/vcontrol.h \
1268     /tools/galaxy/galaxycxx/include/vcontrol_c.h \
1269     /tools/galaxy/galaxycxx/include/vslider_c.h \
1270     /tools/galaxy/galaxycxx/include/vclipboard.h \
1271     /tools/galaxy/galaxycxx/include/vclipboard_c.h \
1272     /tools/galaxy/galaxycxx/include/vtextview_c.h \
1273     /tools/galaxy/galaxycxx/include/vtextitem_c.h \
1274     /tools/galaxy/galaxycxx/include/vstartup.h \
1275     /tools/galaxy/galaxycxx/include/vstartup_c.h \
1276     /tools/galaxy/galaxycxx/include/vtime.h \
1277     /tools/galaxy/galaxycxx/include/vnotice.h \
1278     /tools/galaxy/galaxycxx/include/vconfirm.h \
1279     /tools/galaxy/galaxycxx/include/vcontain.h \
1280     /tools/galaxy/galaxycxx/include/vcontain_c.h \
1281     /tools/galaxy/galaxycxx/include/vconfirm_c.h \
1282     /tools/galaxy/galaxycxx/include/vnotice_c.h \
1283     ../../../share/src/opNote/opNoteDb.h ../../../share/epicsH/cb45to63.h \
1284     /tools/codebase63/source/d4all.h /tools/codebase63/source/p4port.h \
1285     /tools/codebase63/source/d4defs.h /tools/codebase63/source/d4data.h \
1286     /tools/codebase63/source/d4declar.h \
1287     /tools/codebase63/source/d4inline.h /tools/codebase63/source/f4flag.h \
1288     /tools/codebase63/source/e4expr.h /tools/codebase63/source/s4sort.h \
1289     /tools/codebase63/source/e4string.h \
1290     /tools/codebase63/source/e4error.h /tools/codebase63/source/o4opt.h \
1291     /tools/codebase63/source/c4com.h /tools/codebase63/source/c4trans.h \
1292     /tools/codebase63/source/r4relate.h ../../../share/src/opNote/opno.h \
1293     ../../../share/src/opNote/opNoteUtils.hxx \
1294     /tools/galaxy/galaxycxx/include/vcombobox.h \
1295     /tools/galaxy/galaxycxx/include/vlistitem.h \
1296     /tools/galaxy/galaxycxx/include/vlistview.h \
1297     /tools/galaxy/galaxycxx/include/vlist.h \
1298     /tools/galaxy/galaxycxx/include/vlist_c.h \
1299     /tools/galaxy/galaxycxx/include/vlistsize.h \
1300     /tools/galaxy/galaxycxx/include/vlistsize_c.h \
1301     /tools/galaxy/galaxycxx/include/vlistview_c.h \
1302     /tools/galaxy/galaxycxx/include/vliststr.h \
1303     /tools/galaxy/galaxycxx/include/vliststr_c.h \
1304     /tools/galaxy/galaxycxx/include/vlistitem_c.h \
1305     /tools/galaxy/galaxycxx/include/vcombobox_c.h \
1306     ../../../share/src/opNote/opNote.hxx \
1307     ../../../share/src/tisgalaxylib/textFilters.hxx \
1308     ../../../share/src/tisgalaxylib/tisgalaxylib.hxx \
1309     /tools/galaxy/galaxycxx/include/vspinner.h \
1310     /tools/galaxy/galaxycxx/include/vspinner_c.h \
1311     /tools/galaxy/galaxycxx/include/vdomitem.h \
1312     /tools/galaxy/galaxycxx/include/vdomview.h \
1313     /tools/galaxy/galaxycxx/include/vdomain.h \
1314     /tools/galaxy/galaxycxx/include/vdomain_c.h \
1315     /tools/galaxy/galaxycxx/include/vdomview_c.h \
1316     /tools/galaxy/galaxycxx/include/vdomitem_c.h

  ViewVC Help
Powered by ViewVC 1.1.30