source: abuse/branches/pd/imlib/Makefile.SGI @ 608

Last change on this file since 608 was 49, checked in by Sam Hocevar, 15 years ago
  • Imported original public domain release, for future reference.
File size: 79.8 KB
Line 
1all : opt
2
3debug : ./SGI/debug/image.a ./SGI/debug/packet.a ./SGI/debug/gui.a ./SGI/debug/net.a ./SGI/debug/dir.a ./SGI/debug/sound.a ./SGI/debug/joy.a ./SGI/debug/winman.a ./SGI/debug/time.a
4        echo Made debug
5
6opt : ./SGI/opt/image.a ./SGI/opt/packet.a ./SGI/opt/gui.a ./SGI/opt/net.a ./SGI/opt/dir.a ./SGI/opt/sound.a ./SGI/opt/joy.a ./SGI/opt/winman.a ./SGI/opt/time.a
7        echo Made opt
8
9profile : ./SGI/profile/image.a ./SGI/profile/packet.a ./SGI/profile/gui.a ./SGI/profile/net.a ./SGI/profile/dir.a ./SGI/profile/sound.a ./SGI/profile/joy.a ./SGI/profile/winman.a ./SGI/profile/time.a
10        echo Made profile
11
12SGI_image_debug_o_files = \
13        ./SGI/debug/filter.o \
14        ./SGI/debug/gifread.o \
15        ./SGI/debug/globals.o \
16        ./SGI/debug/image.o \
17        ./SGI/debug/linked.o \
18        ./SGI/debug/input.o \
19        ./SGI/debug/mdlread.o \
20        ./SGI/debug/palette.o \
21        ./SGI/debug/ppmread.o \
22        ./SGI/debug/include.o \
23        ./SGI/debug/xwdread.o \
24        ./SGI/debug/fonts.o \
25        ./SGI/debug/decoder.o \
26        ./SGI/debug/loader.o \
27        ./SGI/debug/glread.o \
28        ./SGI/debug/texture.o \
29        ./SGI/debug/specs.o \
30        ./SGI/debug/supmorph.o \
31        ./SGI/debug/image24.o \
32        ./SGI/debug/pcxread.o \
33        ./SGI/debug/timage.o \
34        ./SGI/debug/jmalloc.o \
35        ./SGI/debug/jrand.o \
36        ./SGI/debug/lbmread.o \
37        ./SGI/debug/keys.o \
38        ./SGI/debug/dprint.o \
39        ./SGI/debug/status.o \
40        ./SGI/debug/visobj.o
41
42SGI_packet_debug_o_files = \
43        ./SGI/debug/packet.o
44
45SGI_gui_debug_o_files = \
46        ./SGI/debug/pmenu.o \
47        ./SGI/debug/scroller.o \
48        ./SGI/debug/filesel.o \
49        ./SGI/debug/tools.o \
50        ./SGI/debug/guistat.o
51
52SGI_net_debug_o_files = \
53        port/unix/SGI/debug/jnet.o
54
55SGI_dir_debug_o_files = \
56        port/unix/SGI/debug/jdir.o
57
58SGI_sound_debug_o_files = \
59        port/sgi/SGI/debug/sound.o \
60        ./SGI/debug/readwav.o
61
62SGI_joy_debug_o_files = \
63        port/unix/SGI/debug/joystick.o
64
65SGI_winman_debug_o_files = \
66        port/x11/SGI/debug/video.o \
67        port/x11/SGI/debug/mouse.o \
68        port/x11/SGI/debug/event.o \
69        ./SGI/debug/jwindow.o
70
71SGI_time_debug_o_files = \
72        port/sgi/SGI/debug/timing.o
73
74./SGI/debug/time.a : $(SGI_time_debug_o_files)
75        ar ruvs ./SGI/debug/time.a \
76        port/sgi/SGI/debug/timing.o
77
78port/sgi/SGI/debug/timing.o : port/sgi/timing.c
79        g++ -c -o port/sgi/SGI/debug/timing.o port/sgi/timing.c -Iinclude -g -DMEM_CHECK -DMANAGE_MEM
80
81port/sgi/SGI/debug/timing.o : include/timing.hpp
82
83./SGI/debug/winman.a : $(SGI_winman_debug_o_files)
84        ar ruvs ./SGI/debug/winman.a \
85        port/x11/SGI/debug/video.o \
86        port/x11/SGI/debug/mouse.o \
87        port/x11/SGI/debug/event.o \
88        ./SGI/debug/jwindow.o
89
90port/x11/SGI/debug/video.o : port/x11/video.c
91        g++ -c -o port/x11/SGI/debug/video.o port/x11/video.c -Iinclude -g -DMEM_CHECK -DMANAGE_MEM
92
93port/x11/SGI/debug/video.o : include/bitmap.h
94port/x11/SGI/debug/video.o : include/macs.hpp
95port/x11/SGI/debug/video.o : include/xinclude.h
96port/x11/SGI/debug/video.o : include/dos.h
97port/x11/SGI/debug/video.o : include/video.hpp
98port/x11/SGI/debug/video.o : include/globals.hpp
99port/x11/SGI/debug/video.o : include/system.h
100port/x11/SGI/debug/video.o : include/jmalloc.hpp
101port/x11/SGI/debug/video.o : include/specs.hpp
102port/x11/SGI/debug/video.o : include/palette.hpp
103port/x11/SGI/debug/video.o : include/linked.hpp
104port/x11/SGI/debug/video.o : include/image.hpp
105port/x11/SGI/debug/video.o : include/filter.hpp
106port/x11/SGI/debug/mouse.o : port/x11/mouse.c
107        g++ -c -o port/x11/SGI/debug/mouse.o port/x11/mouse.c -Iinclude -g -DMEM_CHECK -DMANAGE_MEM
108
109port/x11/SGI/debug/mouse.o : include/xinclude.h
110port/x11/SGI/debug/mouse.o : include/mouse.hpp
111port/x11/SGI/debug/mouse.o : include/monoprnt.hpp
112port/x11/SGI/debug/mouse.o : include/mdlread.hpp
113port/x11/SGI/debug/mouse.o : include/filter.hpp
114port/x11/SGI/debug/mouse.o : include/macs.hpp
115port/x11/SGI/debug/mouse.o : include/sprite.hpp
116port/x11/SGI/debug/mouse.o : include/jmalloc.hpp
117port/x11/SGI/debug/mouse.o : include/specs.hpp
118port/x11/SGI/debug/mouse.o : include/palette.hpp
119port/x11/SGI/debug/mouse.o : include/linked.hpp
120port/x11/SGI/debug/mouse.o : include/image.hpp
121port/x11/SGI/debug/mouse.o : include/system.h
122port/x11/SGI/debug/mouse.o : include/video.hpp
123port/x11/SGI/debug/event.o : port/x11/event.c
124        g++ -c -o port/x11/SGI/debug/event.o port/x11/event.c -Iinclude -g -DMEM_CHECK -DMANAGE_MEM
125
126port/x11/SGI/debug/event.o : include/keys.hpp
127port/x11/SGI/debug/event.o : include/event.hpp
128port/x11/SGI/debug/event.o : include/sprite.hpp
129port/x11/SGI/debug/event.o : include/mouse.hpp
130port/x11/SGI/debug/event.o : include/macs.hpp
131port/x11/SGI/debug/event.o : include/gifread.hpp
132port/x11/SGI/debug/event.o : include/video.hpp
133port/x11/SGI/debug/event.o : include/mdlread.hpp
134port/x11/SGI/debug/event.o : include/jmalloc.hpp
135port/x11/SGI/debug/event.o : include/specs.hpp
136port/x11/SGI/debug/event.o : include/palette.hpp
137port/x11/SGI/debug/event.o : include/linked.hpp
138port/x11/SGI/debug/event.o : include/image.hpp
139port/x11/SGI/debug/event.o : include/xinclude.h
140port/x11/SGI/debug/event.o : include/system.h
141./SGI/debug/jwindow.o : jwindow.c
142        g++ -c -o ./SGI/debug/jwindow.o jwindow.c -Iinclude -g -DMEM_CHECK -DMANAGE_MEM
143
144./SGI/debug/jwindow.o : include/timage.hpp
145./SGI/debug/jwindow.o : include/fonts.hpp
146./SGI/debug/jwindow.o : include/jwindow.hpp
147./SGI/debug/jwindow.o : include/filter.hpp
148./SGI/debug/jwindow.o : include/mouse.hpp
149./SGI/debug/jwindow.o : include/macs.hpp
150./SGI/debug/jwindow.o : include/sprite.hpp
151./SGI/debug/jwindow.o : include/keys.hpp
152./SGI/debug/jwindow.o : include/event.hpp
153./SGI/debug/jwindow.o : include/jmalloc.hpp
154./SGI/debug/jwindow.o : include/specs.hpp
155./SGI/debug/jwindow.o : include/palette.hpp
156./SGI/debug/jwindow.o : include/linked.hpp
157./SGI/debug/jwindow.o : include/image.hpp
158./SGI/debug/jwindow.o : include/system.h
159./SGI/debug/jwindow.o : include/video.hpp
160
161./SGI/debug/joy.a : $(SGI_joy_debug_o_files)
162        ar ruvs ./SGI/debug/joy.a \
163        port/unix/SGI/debug/joystick.o
164
165port/unix/SGI/debug/joystick.o : port/unix/joystick.c
166        g++ -c -o port/unix/SGI/debug/joystick.o port/unix/joystick.c -Iinclude -g -DMEM_CHECK -DMANAGE_MEM
167
168port/unix/SGI/debug/joystick.o : port/unix/joystick.c
169
170./SGI/debug/sound.a : $(SGI_sound_debug_o_files)
171        ar ruvs ./SGI/debug/sound.a \
172        port/sgi/SGI/debug/sound.o \
173        ./SGI/debug/readwav.o
174
175port/sgi/SGI/debug/sound.o : port/sgi/sound.c
176        g++ -c -o port/sgi/SGI/debug/sound.o port/sgi/sound.c -Iinclude -g -DMEM_CHECK -DMANAGE_MEM
177
178port/sgi/SGI/debug/sound.o : include/timing.hpp
179port/sgi/SGI/debug/sound.o : include/dprint.hpp
180port/sgi/SGI/debug/sound.o : include/jmalloc.hpp
181port/sgi/SGI/debug/sound.o : include/linked.hpp
182port/sgi/SGI/debug/sound.o : include/specs.hpp
183port/sgi/SGI/debug/sound.o : include/readwav.hpp
184port/sgi/SGI/debug/sound.o : include/sound.hpp
185port/sgi/SGI/debug/sound.o : include/system.h
186port/sgi/SGI/debug/sound.o : include/macs.hpp
187./SGI/debug/readwav.o : readwav.c
188        g++ -c -o ./SGI/debug/readwav.o readwav.c -Iinclude -g -DMEM_CHECK -DMANAGE_MEM
189
190./SGI/debug/readwav.o : include/dprint.hpp
191./SGI/debug/readwav.o : include/macs.hpp
192./SGI/debug/readwav.o : include/system.h
193./SGI/debug/readwav.o : include/jmalloc.hpp
194./SGI/debug/readwav.o : include/linked.hpp
195./SGI/debug/readwav.o : include/specs.hpp
196./SGI/debug/readwav.o : include/readwav.hpp
197
198./SGI/debug/dir.a : $(SGI_dir_debug_o_files)
199        ar ruvs ./SGI/debug/dir.a \
200        port/unix/SGI/debug/jdir.o
201
202port/unix/SGI/debug/jdir.o : port/unix/jdir.c
203        g++ -c -o port/unix/SGI/debug/jdir.o port/unix/jdir.c -Iinclude -g -DMEM_CHECK -DMANAGE_MEM
204
205port/unix/SGI/debug/jdir.o : include/jmalloc.hpp
206
207./SGI/debug/net.a : $(SGI_net_debug_o_files)
208        ar ruvs ./SGI/debug/net.a \
209        port/unix/SGI/debug/jnet.o
210
211port/unix/SGI/debug/jnet.o : port/unix/jnet.c
212        g++ -c -o port/unix/SGI/debug/jnet.o port/unix/jnet.c -Iinclude -g -DMEM_CHECK -DMANAGE_MEM
213
214port/unix/SGI/debug/jnet.o : include/jmalloc.hpp
215port/unix/SGI/debug/jnet.o : include/packet.hpp
216port/unix/SGI/debug/jnet.o : include/system.h
217port/unix/SGI/debug/jnet.o : include/macs.hpp
218port/unix/SGI/debug/jnet.o : include/jnet.hpp
219
220./SGI/debug/gui.a : $(SGI_gui_debug_o_files)
221        ar ruvs ./SGI/debug/gui.a \
222        ./SGI/debug/pmenu.o \
223        ./SGI/debug/scroller.o \
224        ./SGI/debug/filesel.o \
225        ./SGI/debug/tools.o \
226        ./SGI/debug/guistat.o
227
228./SGI/debug/pmenu.o : pmenu.c
229        g++ -c -o ./SGI/debug/pmenu.o pmenu.c -Iinclude -g -DMEM_CHECK -DMANAGE_MEM
230
231./SGI/debug/pmenu.o : include/timage.hpp
232./SGI/debug/pmenu.o : include/fonts.hpp
233./SGI/debug/pmenu.o : include/filter.hpp
234./SGI/debug/pmenu.o : include/mouse.hpp
235./SGI/debug/pmenu.o : include/macs.hpp
236./SGI/debug/pmenu.o : include/sprite.hpp
237./SGI/debug/pmenu.o : include/keys.hpp
238./SGI/debug/pmenu.o : include/event.hpp
239./SGI/debug/pmenu.o : include/specs.hpp
240./SGI/debug/pmenu.o : include/palette.hpp
241./SGI/debug/pmenu.o : include/linked.hpp
242./SGI/debug/pmenu.o : include/image.hpp
243./SGI/debug/pmenu.o : include/system.h
244./SGI/debug/pmenu.o : include/video.hpp
245./SGI/debug/pmenu.o : include/jwindow.hpp
246./SGI/debug/pmenu.o : include/input.hpp
247./SGI/debug/pmenu.o : include/jmalloc.hpp
248./SGI/debug/pmenu.o : include/pmenu.hpp
249./SGI/debug/scroller.o : scroller.c
250        g++ -c -o ./SGI/debug/scroller.o scroller.c -Iinclude -g -DMEM_CHECK -DMANAGE_MEM
251
252./SGI/debug/scroller.o : include/timage.hpp
253./SGI/debug/scroller.o : include/fonts.hpp
254./SGI/debug/scroller.o : include/filter.hpp
255./SGI/debug/scroller.o : include/mouse.hpp
256./SGI/debug/scroller.o : include/macs.hpp
257./SGI/debug/scroller.o : include/sprite.hpp
258./SGI/debug/scroller.o : include/keys.hpp
259./SGI/debug/scroller.o : include/event.hpp
260./SGI/debug/scroller.o : include/jmalloc.hpp
261./SGI/debug/scroller.o : include/specs.hpp
262./SGI/debug/scroller.o : include/palette.hpp
263./SGI/debug/scroller.o : include/linked.hpp
264./SGI/debug/scroller.o : include/image.hpp
265./SGI/debug/scroller.o : include/system.h
266./SGI/debug/scroller.o : include/video.hpp
267./SGI/debug/scroller.o : include/jwindow.hpp
268./SGI/debug/scroller.o : include/input.hpp
269./SGI/debug/scroller.o : include/scroller.hpp
270./SGI/debug/filesel.o : filesel.c
271        g++ -c -o ./SGI/debug/filesel.o filesel.c -Iinclude -g -DMEM_CHECK -DMANAGE_MEM
272
273./SGI/debug/filesel.o : include/jdir.hpp
274./SGI/debug/filesel.o : include/scroller.hpp
275./SGI/debug/filesel.o : include/input.hpp
276./SGI/debug/filesel.o : include/timage.hpp
277./SGI/debug/filesel.o : include/fonts.hpp
278./SGI/debug/filesel.o : include/filter.hpp
279./SGI/debug/filesel.o : include/mouse.hpp
280./SGI/debug/filesel.o : include/macs.hpp
281./SGI/debug/filesel.o : include/sprite.hpp
282./SGI/debug/filesel.o : include/keys.hpp
283./SGI/debug/filesel.o : include/event.hpp
284./SGI/debug/filesel.o : include/jmalloc.hpp
285./SGI/debug/filesel.o : include/specs.hpp
286./SGI/debug/filesel.o : include/palette.hpp
287./SGI/debug/filesel.o : include/linked.hpp
288./SGI/debug/filesel.o : include/image.hpp
289./SGI/debug/filesel.o : include/system.h
290./SGI/debug/filesel.o : include/video.hpp
291./SGI/debug/filesel.o : include/jwindow.hpp
292./SGI/debug/filesel.o : include/filesel.hpp
293./SGI/debug/tools.o : tools.c
294        g++ -c -o ./SGI/debug/tools.o tools.c -Iinclude -g -DMEM_CHECK -DMANAGE_MEM
295
296./SGI/debug/tools.o : include/visobj.hpp
297./SGI/debug/tools.o : include/scroller.hpp
298./SGI/debug/tools.o : include/input.hpp
299./SGI/debug/tools.o : include/timage.hpp
300./SGI/debug/tools.o : include/fonts.hpp
301./SGI/debug/tools.o : include/filter.hpp
302./SGI/debug/tools.o : include/mouse.hpp
303./SGI/debug/tools.o : include/macs.hpp
304./SGI/debug/tools.o : include/sprite.hpp
305./SGI/debug/tools.o : include/keys.hpp
306./SGI/debug/tools.o : include/event.hpp
307./SGI/debug/tools.o : include/jmalloc.hpp
308./SGI/debug/tools.o : include/specs.hpp
309./SGI/debug/tools.o : include/palette.hpp
310./SGI/debug/tools.o : include/linked.hpp
311./SGI/debug/tools.o : include/image.hpp
312./SGI/debug/tools.o : include/system.h
313./SGI/debug/tools.o : include/video.hpp
314./SGI/debug/tools.o : include/jwindow.hpp
315./SGI/debug/tools.o : include/tools.hpp
316./SGI/debug/guistat.o : guistat.c
317        g++ -c -o ./SGI/debug/guistat.o guistat.c -Iinclude -g -DMEM_CHECK -DMANAGE_MEM
318
319./SGI/debug/guistat.o : include/guistat.hpp
320./SGI/debug/guistat.o : include/timing.hpp
321./SGI/debug/guistat.o : include/timage.hpp
322./SGI/debug/guistat.o : include/fonts.hpp
323./SGI/debug/guistat.o : include/filter.hpp
324./SGI/debug/guistat.o : include/mouse.hpp
325./SGI/debug/guistat.o : include/macs.hpp
326./SGI/debug/guistat.o : include/sprite.hpp
327./SGI/debug/guistat.o : include/keys.hpp
328./SGI/debug/guistat.o : include/event.hpp
329./SGI/debug/guistat.o : include/jmalloc.hpp
330./SGI/debug/guistat.o : include/specs.hpp
331./SGI/debug/guistat.o : include/palette.hpp
332./SGI/debug/guistat.o : include/linked.hpp
333./SGI/debug/guistat.o : include/image.hpp
334./SGI/debug/guistat.o : include/system.h
335./SGI/debug/guistat.o : include/video.hpp
336./SGI/debug/guistat.o : include/jwindow.hpp
337./SGI/debug/guistat.o : include/visobj.hpp
338./SGI/debug/guistat.o : include/status.hpp
339
340./SGI/debug/packet.a : $(SGI_packet_debug_o_files)
341        ar ruvs ./SGI/debug/packet.a \
342        ./SGI/debug/packet.o
343
344./SGI/debug/packet.o : packet.c
345        g++ -c -o ./SGI/debug/packet.o packet.c -Iinclude -g -DMEM_CHECK -DMANAGE_MEM
346
347./SGI/debug/packet.o : include/jmalloc.hpp
348./SGI/debug/packet.o : include/system.h
349./SGI/debug/packet.o : include/macs.hpp
350./SGI/debug/packet.o : include/packet.hpp
351
352./SGI/debug/image.a : $(SGI_image_debug_o_files)
353        ar ruvs ./SGI/debug/image.a \
354        ./SGI/debug/filter.o \
355        ./SGI/debug/gifread.o \
356        ./SGI/debug/globals.o \
357        ./SGI/debug/image.o \
358        ./SGI/debug/linked.o \
359        ./SGI/debug/input.o \
360        ./SGI/debug/mdlread.o \
361        ./SGI/debug/palette.o \
362        ./SGI/debug/ppmread.o \
363        ./SGI/debug/include.o \
364        ./SGI/debug/xwdread.o \
365        ./SGI/debug/fonts.o \
366        ./SGI/debug/decoder.o \
367        ./SGI/debug/loader.o \
368        ./SGI/debug/glread.o \
369        ./SGI/debug/texture.o \
370        ./SGI/debug/specs.o \
371        ./SGI/debug/supmorph.o \
372        ./SGI/debug/image24.o \
373        ./SGI/debug/pcxread.o \
374        ./SGI/debug/timage.o \
375        ./SGI/debug/jmalloc.o \
376        ./SGI/debug/jrand.o \
377        ./SGI/debug/lbmread.o \
378        ./SGI/debug/keys.o \
379        ./SGI/debug/dprint.o \
380        ./SGI/debug/status.o \
381        ./SGI/debug/visobj.o
382
383./SGI/debug/filter.o : filter.c
384        g++ -c -o ./SGI/debug/filter.o filter.c -Iinclude -g -DMEM_CHECK -DMANAGE_MEM
385
386./SGI/debug/filter.o : include/filter.hpp
387./SGI/debug/filter.o : include/macs.hpp
388./SGI/debug/filter.o : include/system.h
389./SGI/debug/filter.o : include/jmalloc.hpp
390./SGI/debug/filter.o : include/specs.hpp
391./SGI/debug/filter.o : include/palette.hpp
392./SGI/debug/filter.o : include/linked.hpp
393./SGI/debug/filter.o : include/image.hpp
394./SGI/debug/gifread.o : gifread.c
395        g++ -c -o ./SGI/debug/gifread.o gifread.c -Iinclude -g -DMEM_CHECK -DMANAGE_MEM
396
397./SGI/debug/gifread.o : include/macs.hpp
398./SGI/debug/gifread.o : include/dir.h
399./SGI/debug/gifread.o : include/dos.h
400./SGI/debug/gifread.o : include/std.h
401./SGI/debug/gifread.o : include/gifdecod.hpp
402./SGI/debug/gifread.o : include/video.hpp
403./SGI/debug/gifread.o : include/system.h
404./SGI/debug/gifread.o : include/jmalloc.hpp
405./SGI/debug/gifread.o : include/specs.hpp
406./SGI/debug/gifread.o : include/palette.hpp
407./SGI/debug/gifread.o : include/linked.hpp
408./SGI/debug/gifread.o : include/image.hpp
409./SGI/debug/gifread.o : include/gifread.hpp
410./SGI/debug/globals.o : globals.c
411        g++ -c -o ./SGI/debug/globals.o globals.c -Iinclude -g -DMEM_CHECK -DMANAGE_MEM
412
413./SGI/debug/globals.o : globals.c
414./SGI/debug/image.o : image.c
415        g++ -c -o ./SGI/debug/image.o image.c -Iinclude -g -DMEM_CHECK -DMANAGE_MEM
416
417./SGI/debug/image.o : include/exitproc.hpp
418./SGI/debug/image.o : include/dos.h
419./SGI/debug/image.o : include/macs.hpp
420./SGI/debug/image.o : include/jmalloc.hpp
421./SGI/debug/image.o : include/specs.hpp
422./SGI/debug/image.o : include/palette.hpp
423./SGI/debug/image.o : include/image.hpp
424./SGI/debug/image.o : include/linked.hpp
425./SGI/debug/image.o : include/system.h
426./SGI/debug/image.o : include/emm.hpp
427./SGI/debug/linked.o : linked.c
428        g++ -c -o ./SGI/debug/linked.o linked.c -Iinclude -g -DMEM_CHECK -DMANAGE_MEM
429
430./SGI/debug/linked.o : include/linked.hpp
431./SGI/debug/input.o : input.c
432        g++ -c -o ./SGI/debug/input.o input.c -Iinclude -g -DMEM_CHECK -DMANAGE_MEM
433
434./SGI/debug/input.o : include/timage.hpp
435./SGI/debug/input.o : include/fonts.hpp
436./SGI/debug/input.o : include/filter.hpp
437./SGI/debug/input.o : include/mouse.hpp
438./SGI/debug/input.o : include/macs.hpp
439./SGI/debug/input.o : include/sprite.hpp
440./SGI/debug/input.o : include/keys.hpp
441./SGI/debug/input.o : include/event.hpp
442./SGI/debug/input.o : include/jmalloc.hpp
443./SGI/debug/input.o : include/specs.hpp
444./SGI/debug/input.o : include/palette.hpp
445./SGI/debug/input.o : include/linked.hpp
446./SGI/debug/input.o : include/image.hpp
447./SGI/debug/input.o : include/system.h
448./SGI/debug/input.o : include/video.hpp
449./SGI/debug/input.o : include/jwindow.hpp
450./SGI/debug/input.o : include/input.hpp
451./SGI/debug/mdlread.o : mdlread.c
452        g++ -c -o ./SGI/debug/mdlread.o mdlread.c -Iinclude -g -DMEM_CHECK -DMANAGE_MEM
453
454./SGI/debug/mdlread.o : include/macs.hpp
455./SGI/debug/mdlread.o : include/image.hpp
456./SGI/debug/mdlread.o : include/system.h
457./SGI/debug/mdlread.o : include/jmalloc.hpp
458./SGI/debug/mdlread.o : include/specs.hpp
459./SGI/debug/mdlread.o : include/linked.hpp
460./SGI/debug/mdlread.o : include/palette.hpp
461./SGI/debug/mdlread.o : include/mdlread.hpp
462./SGI/debug/palette.o : palette.c
463        g++ -c -o ./SGI/debug/palette.o palette.c -Iinclude -g -DMEM_CHECK -DMANAGE_MEM
464
465./SGI/debug/palette.o : include/filter.hpp
466./SGI/debug/palette.o : include/video.hpp
467./SGI/debug/palette.o : include/dos.h
468./SGI/debug/palette.o : include/macs.hpp
469./SGI/debug/palette.o : include/image.hpp
470./SGI/debug/palette.o : include/system.h
471./SGI/debug/palette.o : include/jmalloc.hpp
472./SGI/debug/palette.o : include/specs.hpp
473./SGI/debug/palette.o : include/linked.hpp
474./SGI/debug/palette.o : include/palette.hpp
475./SGI/debug/ppmread.o : ppmread.c
476        g++ -c -o ./SGI/debug/ppmread.o ppmread.c -Iinclude -g -DMEM_CHECK -DMANAGE_MEM
477
478./SGI/debug/ppmread.o : include/ppmread.hpp
479./SGI/debug/ppmread.o : include/macs.hpp
480./SGI/debug/ppmread.o : include/system.h
481./SGI/debug/ppmread.o : include/jmalloc.hpp
482./SGI/debug/ppmread.o : include/specs.hpp
483./SGI/debug/ppmread.o : include/palette.hpp
484./SGI/debug/ppmread.o : include/linked.hpp
485./SGI/debug/ppmread.o : include/image.hpp
486./SGI/debug/include.o : include.c
487        g++ -c -o ./SGI/debug/include.o include.c -Iinclude -g -DMEM_CHECK -DMANAGE_MEM
488
489./SGI/debug/include.o : include/system.h
490./SGI/debug/include.o : include/jmalloc.hpp
491./SGI/debug/include.o : include/specs.hpp
492./SGI/debug/include.o : include/palette.hpp
493./SGI/debug/include.o : include/linked.hpp
494./SGI/debug/include.o : include/image.hpp
495./SGI/debug/include.o : include/include.hpp
496./SGI/debug/xwdread.o : xwdread.c
497        g++ -c -o ./SGI/debug/xwdread.o xwdread.c -Iinclude -g -DMEM_CHECK -DMANAGE_MEM
498
499./SGI/debug/xwdread.o : include/image24.hpp
500./SGI/debug/xwdread.o : include/main.hpp
501./SGI/debug/xwdread.o : include/dos.h
502./SGI/debug/xwdread.o : include/video.hpp
503./SGI/debug/xwdread.o : include/mouse.hpp
504./SGI/debug/xwdread.o : include/macs.hpp
505./SGI/debug/xwdread.o : include/sprite.hpp
506./SGI/debug/xwdread.o : include/keys.hpp
507./SGI/debug/xwdread.o : include/event.hpp
508./SGI/debug/xwdread.o : include/system.h
509./SGI/debug/xwdread.o : include/jmalloc.hpp
510./SGI/debug/xwdread.o : include/specs.hpp
511./SGI/debug/xwdread.o : include/palette.hpp
512./SGI/debug/xwdread.o : include/linked.hpp
513./SGI/debug/xwdread.o : include/image.hpp
514./SGI/debug/xwdread.o : include/filter.hpp
515./SGI/debug/fonts.o : fonts.c
516        g++ -c -o ./SGI/debug/fonts.o fonts.c -Iinclude -g -DMEM_CHECK -DMANAGE_MEM
517
518./SGI/debug/fonts.o : include/filter.hpp
519./SGI/debug/fonts.o : include/macs.hpp
520./SGI/debug/fonts.o : include/timage.hpp
521./SGI/debug/fonts.o : include/system.h
522./SGI/debug/fonts.o : include/jmalloc.hpp
523./SGI/debug/fonts.o : include/specs.hpp
524./SGI/debug/fonts.o : include/palette.hpp
525./SGI/debug/fonts.o : include/linked.hpp
526./SGI/debug/fonts.o : include/image.hpp
527./SGI/debug/fonts.o : include/fonts.hpp
528./SGI/debug/decoder.o : decoder.c
529        g++ -c -o ./SGI/debug/decoder.o decoder.c -Iinclude -g -DMEM_CHECK -DMANAGE_MEM
530
531./SGI/debug/decoder.o : include/macs.hpp
532./SGI/debug/decoder.o : include/system.h
533./SGI/debug/decoder.o : include/jmalloc.hpp
534./SGI/debug/decoder.o : include/specs.hpp
535./SGI/debug/decoder.o : include/palette.hpp
536./SGI/debug/decoder.o : include/linked.hpp
537./SGI/debug/decoder.o : include/image.hpp
538./SGI/debug/decoder.o : include/errs.h
539./SGI/debug/loader.o : loader.c
540        g++ -c -o ./SGI/debug/loader.o loader.c -Iinclude -g -DMEM_CHECK -DMANAGE_MEM
541
542./SGI/debug/loader.o : include/lbmread.hpp
543./SGI/debug/loader.o : include/pcxread.hpp
544./SGI/debug/loader.o : include/glread.hpp
545./SGI/debug/loader.o : include/xwdread.hpp
546./SGI/debug/loader.o : include/ppmread.hpp
547./SGI/debug/loader.o : include/mdlread.hpp
548./SGI/debug/loader.o : include/filter.hpp
549./SGI/debug/loader.o : include/macs.hpp
550./SGI/debug/loader.o : include/image24.hpp
551./SGI/debug/loader.o : include/system.h
552./SGI/debug/loader.o : include/jmalloc.hpp
553./SGI/debug/loader.o : include/specs.hpp
554./SGI/debug/loader.o : include/palette.hpp
555./SGI/debug/loader.o : include/linked.hpp
556./SGI/debug/loader.o : include/image.hpp
557./SGI/debug/loader.o : include/loader.hpp
558./SGI/debug/glread.o : glread.c
559        g++ -c -o ./SGI/debug/glread.o glread.c -Iinclude -g -DMEM_CHECK -DMANAGE_MEM
560
561./SGI/debug/glread.o : include/video.hpp
562./SGI/debug/glread.o : include/jmalloc.hpp
563./SGI/debug/glread.o : include/specs.hpp
564./SGI/debug/glread.o : include/palette.hpp
565./SGI/debug/glread.o : include/linked.hpp
566./SGI/debug/glread.o : include/image.hpp
567./SGI/debug/glread.o : include/system.h
568./SGI/debug/glread.o : include/macs.hpp
569./SGI/debug/texture.o : texture.c
570        g++ -c -o ./SGI/debug/texture.o texture.c -Iinclude -g -DMEM_CHECK -DMANAGE_MEM
571
572./SGI/debug/texture.o : include/mouse.hpp
573./SGI/debug/texture.o : include/sprite.hpp
574./SGI/debug/texture.o : include/keys.hpp
575./SGI/debug/texture.o : include/event.hpp
576./SGI/debug/texture.o : include/macs.hpp
577./SGI/debug/texture.o : include/video.hpp
578./SGI/debug/texture.o : include/system.h
579./SGI/debug/texture.o : include/jmalloc.hpp
580./SGI/debug/texture.o : include/specs.hpp
581./SGI/debug/texture.o : include/palette.hpp
582./SGI/debug/texture.o : include/linked.hpp
583./SGI/debug/texture.o : include/image.hpp
584./SGI/debug/specs.o : specs.c
585        g++ -c -o ./SGI/debug/specs.o specs.c -Iinclude -g -DMEM_CHECK -DMANAGE_MEM
586
587./SGI/debug/specs.o : include/dprint.hpp
588./SGI/debug/specs.o : include/system.h
589./SGI/debug/specs.o : include/jmalloc.hpp
590./SGI/debug/specs.o : include/specs.hpp
591./SGI/debug/specs.o : include/palette.hpp
592./SGI/debug/specs.o : include/linked.hpp
593./SGI/debug/specs.o : include/image.hpp
594./SGI/debug/supmorph.o : supmorph.c
595        g++ -c -o ./SGI/debug/supmorph.o supmorph.c -Iinclude -g -DMEM_CHECK -DMANAGE_MEM
596
597./SGI/debug/supmorph.o : include/jrand.hpp
598./SGI/debug/supmorph.o : include/video.hpp
599./SGI/debug/supmorph.o : include/timing.hpp
600./SGI/debug/supmorph.o : include/filter.hpp
601./SGI/debug/supmorph.o : include/macs.hpp
602./SGI/debug/supmorph.o : include/system.h
603./SGI/debug/supmorph.o : include/specs.hpp
604./SGI/debug/supmorph.o : include/palette.hpp
605./SGI/debug/supmorph.o : include/linked.hpp
606./SGI/debug/supmorph.o : include/image.hpp
607./SGI/debug/supmorph.o : include/timage.hpp
608./SGI/debug/supmorph.o : include/jmalloc.hpp
609./SGI/debug/supmorph.o : include/supmorph.hpp
610./SGI/debug/image24.o : image24.c
611        g++ -c -o ./SGI/debug/image24.o image24.c -Iinclude -g -DMEM_CHECK -DMANAGE_MEM
612
613./SGI/debug/image24.o : include/image.hpp
614./SGI/debug/image24.o : include/filter.hpp
615./SGI/debug/image24.o : include/macs.hpp
616./SGI/debug/image24.o : include/system.h
617./SGI/debug/image24.o : include/jmalloc.hpp
618./SGI/debug/image24.o : include/specs.hpp
619./SGI/debug/image24.o : include/linked.hpp
620./SGI/debug/image24.o : include/palette.hpp
621./SGI/debug/image24.o : include/image24.hpp
622./SGI/debug/pcxread.o : pcxread.c
623        g++ -c -o ./SGI/debug/pcxread.o pcxread.c -Iinclude -g -DMEM_CHECK -DMANAGE_MEM
624
625./SGI/debug/pcxread.o : include/filter.hpp
626./SGI/debug/pcxread.o : include/macs.hpp
627./SGI/debug/pcxread.o : include/image24.hpp
628./SGI/debug/pcxread.o : include/system.h
629./SGI/debug/pcxread.o : include/jmalloc.hpp
630./SGI/debug/pcxread.o : include/specs.hpp
631./SGI/debug/pcxread.o : include/palette.hpp
632./SGI/debug/pcxread.o : include/linked.hpp
633./SGI/debug/pcxread.o : include/image.hpp
634./SGI/debug/pcxread.o : include/pcxread.hpp
635./SGI/debug/timage.o : timage.c
636        g++ -c -o ./SGI/debug/timage.o timage.c -Iinclude -g -DMEM_CHECK -DMANAGE_MEM
637
638./SGI/debug/timage.o : include/filter.hpp
639./SGI/debug/timage.o : include/macs.hpp
640./SGI/debug/timage.o : include/system.h
641./SGI/debug/timage.o : include/jmalloc.hpp
642./SGI/debug/timage.o : include/specs.hpp
643./SGI/debug/timage.o : include/palette.hpp
644./SGI/debug/timage.o : include/linked.hpp
645./SGI/debug/timage.o : include/image.hpp
646./SGI/debug/timage.o : include/timage.hpp
647./SGI/debug/jmalloc.o : jmalloc.c
648        g++ -c -o ./SGI/debug/jmalloc.o jmalloc.c -Iinclude -g -DMEM_CHECK -DMANAGE_MEM
649
650./SGI/debug/jmalloc.o : include/jmalloc.hpp
651./SGI/debug/jmalloc.o : include/system.h
652./SGI/debug/jmalloc.o : include/macs.hpp
653./SGI/debug/jmalloc.o : include/doscall.hpp
654./SGI/debug/jrand.o : jrand.c
655        g++ -c -o ./SGI/debug/jrand.o jrand.c -Iinclude -g -DMEM_CHECK -DMANAGE_MEM
656
657./SGI/debug/jrand.o : include/jrand.hpp
658./SGI/debug/lbmread.o : lbmread.c
659        g++ -c -o ./SGI/debug/lbmread.o lbmread.c -Iinclude -g -DMEM_CHECK -DMANAGE_MEM
660
661./SGI/debug/lbmread.o : include/system.h
662./SGI/debug/lbmread.o : include/jmalloc.hpp
663./SGI/debug/lbmread.o : include/specs.hpp
664./SGI/debug/lbmread.o : include/palette.hpp
665./SGI/debug/lbmread.o : include/linked.hpp
666./SGI/debug/lbmread.o : include/image.hpp
667./SGI/debug/lbmread.o : include/lbmread.hpp
668./SGI/debug/keys.o : keys.c
669        g++ -c -o ./SGI/debug/keys.o keys.c -Iinclude -g -DMEM_CHECK -DMANAGE_MEM
670
671./SGI/debug/keys.o : include/keys.hpp
672./SGI/debug/dprint.o : dprint.c
673        g++ -c -o ./SGI/debug/dprint.o dprint.c -Iinclude -g -DMEM_CHECK -DMANAGE_MEM
674
675./SGI/debug/dprint.o : include/system.h
676./SGI/debug/dprint.o : include/macs.hpp
677./SGI/debug/status.o : status.c
678        g++ -c -o ./SGI/debug/status.o status.c -Iinclude -g -DMEM_CHECK -DMANAGE_MEM
679
680./SGI/debug/status.o : include/dprint.hpp
681./SGI/debug/status.o : include/timage.hpp
682./SGI/debug/status.o : include/fonts.hpp
683./SGI/debug/status.o : include/filter.hpp
684./SGI/debug/status.o : include/mouse.hpp
685./SGI/debug/status.o : include/sprite.hpp
686./SGI/debug/status.o : include/keys.hpp
687./SGI/debug/status.o : include/event.hpp
688./SGI/debug/status.o : include/jmalloc.hpp
689./SGI/debug/status.o : include/specs.hpp
690./SGI/debug/status.o : include/palette.hpp
691./SGI/debug/status.o : include/linked.hpp
692./SGI/debug/status.o : include/image.hpp
693./SGI/debug/status.o : include/video.hpp
694./SGI/debug/status.o : include/jwindow.hpp
695./SGI/debug/status.o : include/visobj.hpp
696./SGI/debug/status.o : include/status.hpp
697./SGI/debug/status.o : include/system.h
698./SGI/debug/status.o : include/macs.hpp
699./SGI/debug/visobj.o : visobj.c
700        g++ -c -o ./SGI/debug/visobj.o visobj.c -Iinclude -g -DMEM_CHECK -DMANAGE_MEM
701
702./SGI/debug/visobj.o : include/timage.hpp
703./SGI/debug/visobj.o : include/fonts.hpp
704./SGI/debug/visobj.o : include/filter.hpp
705./SGI/debug/visobj.o : include/mouse.hpp
706./SGI/debug/visobj.o : include/macs.hpp
707./SGI/debug/visobj.o : include/sprite.hpp
708./SGI/debug/visobj.o : include/keys.hpp
709./SGI/debug/visobj.o : include/event.hpp
710./SGI/debug/visobj.o : include/jmalloc.hpp
711./SGI/debug/visobj.o : include/specs.hpp
712./SGI/debug/visobj.o : include/palette.hpp
713./SGI/debug/visobj.o : include/linked.hpp
714./SGI/debug/visobj.o : include/image.hpp
715./SGI/debug/visobj.o : include/system.h
716./SGI/debug/visobj.o : include/video.hpp
717./SGI/debug/visobj.o : include/jwindow.hpp
718./SGI/debug/visobj.o : include/visobj.hpp
719
720SGI_image_opt_o_files = \
721        ./SGI/opt/filter.o \
722        ./SGI/opt/gifread.o \
723        ./SGI/opt/globals.o \
724        ./SGI/opt/image.o \
725        ./SGI/opt/linked.o \
726        ./SGI/opt/input.o \
727        ./SGI/opt/mdlread.o \
728        ./SGI/opt/palette.o \
729        ./SGI/opt/ppmread.o \
730        ./SGI/opt/include.o \
731        ./SGI/opt/xwdread.o \
732        ./SGI/opt/fonts.o \
733        ./SGI/opt/decoder.o \
734        ./SGI/opt/loader.o \
735        ./SGI/opt/glread.o \
736        ./SGI/opt/texture.o \
737        ./SGI/opt/specs.o \
738        ./SGI/opt/supmorph.o \
739        ./SGI/opt/image24.o \
740        ./SGI/opt/pcxread.o \
741        ./SGI/opt/timage.o \
742        ./SGI/opt/jmalloc.o \
743        ./SGI/opt/jrand.o \
744        ./SGI/opt/lbmread.o \
745        ./SGI/opt/keys.o \
746        ./SGI/opt/dprint.o \
747        ./SGI/opt/status.o \
748        ./SGI/opt/visobj.o
749
750SGI_packet_opt_o_files = \
751        ./SGI/opt/packet.o
752
753SGI_gui_opt_o_files = \
754        ./SGI/opt/pmenu.o \
755        ./SGI/opt/scroller.o \
756        ./SGI/opt/filesel.o \
757        ./SGI/opt/tools.o \
758        ./SGI/opt/guistat.o
759
760SGI_net_opt_o_files = \
761        port/unix/SGI/opt/jnet.o
762
763SGI_dir_opt_o_files = \
764        port/unix/SGI/opt/jdir.o
765
766SGI_sound_opt_o_files = \
767        port/sgi/SGI/opt/sound.o \
768        ./SGI/opt/readwav.o
769
770SGI_joy_opt_o_files = \
771        port/unix/SGI/opt/joystick.o
772
773SGI_winman_opt_o_files = \
774        port/x11/SGI/opt/video.o \
775        port/x11/SGI/opt/mouse.o \
776        port/x11/SGI/opt/event.o \
777        ./SGI/opt/jwindow.o
778
779SGI_time_opt_o_files = \
780        port/sgi/SGI/opt/timing.o
781
782./SGI/opt/time.a : $(SGI_time_opt_o_files)
783        ar ruvs ./SGI/opt/time.a \
784        port/sgi/SGI/opt/timing.o
785
786port/sgi/SGI/opt/timing.o : port/sgi/timing.c
787        g++ -c -o port/sgi/SGI/opt/timing.o port/sgi/timing.c -Iinclude -O2 -DMANAGE_MEM -DNO_CHECK
788
789port/sgi/SGI/opt/timing.o : include/timing.hpp
790
791./SGI/opt/winman.a : $(SGI_winman_opt_o_files)
792        ar ruvs ./SGI/opt/winman.a \
793        port/x11/SGI/opt/video.o \
794        port/x11/SGI/opt/mouse.o \
795        port/x11/SGI/opt/event.o \
796        ./SGI/opt/jwindow.o
797
798port/x11/SGI/opt/video.o : port/x11/video.c
799        g++ -c -o port/x11/SGI/opt/video.o port/x11/video.c -Iinclude -O2 -DMANAGE_MEM -DNO_CHECK
800
801port/x11/SGI/opt/video.o : include/bitmap.h
802port/x11/SGI/opt/video.o : include/macs.hpp
803port/x11/SGI/opt/video.o : include/xinclude.h
804port/x11/SGI/opt/video.o : include/dos.h
805port/x11/SGI/opt/video.o : include/video.hpp
806port/x11/SGI/opt/video.o : include/globals.hpp
807port/x11/SGI/opt/video.o : include/system.h
808port/x11/SGI/opt/video.o : include/jmalloc.hpp
809port/x11/SGI/opt/video.o : include/specs.hpp
810port/x11/SGI/opt/video.o : include/palette.hpp
811port/x11/SGI/opt/video.o : include/linked.hpp
812port/x11/SGI/opt/video.o : include/image.hpp
813port/x11/SGI/opt/video.o : include/filter.hpp
814port/x11/SGI/opt/mouse.o : port/x11/mouse.c
815        g++ -c -o port/x11/SGI/opt/mouse.o port/x11/mouse.c -Iinclude -O2 -DMANAGE_MEM -DNO_CHECK
816
817port/x11/SGI/opt/mouse.o : include/xinclude.h
818port/x11/SGI/opt/mouse.o : include/mouse.hpp
819port/x11/SGI/opt/mouse.o : include/monoprnt.hpp
820port/x11/SGI/opt/mouse.o : include/mdlread.hpp
821port/x11/SGI/opt/mouse.o : include/filter.hpp
822port/x11/SGI/opt/mouse.o : include/macs.hpp
823port/x11/SGI/opt/mouse.o : include/sprite.hpp
824port/x11/SGI/opt/mouse.o : include/jmalloc.hpp
825port/x11/SGI/opt/mouse.o : include/specs.hpp
826port/x11/SGI/opt/mouse.o : include/palette.hpp
827port/x11/SGI/opt/mouse.o : include/linked.hpp
828port/x11/SGI/opt/mouse.o : include/image.hpp
829port/x11/SGI/opt/mouse.o : include/system.h
830port/x11/SGI/opt/mouse.o : include/video.hpp
831port/x11/SGI/opt/event.o : port/x11/event.c
832        g++ -c -o port/x11/SGI/opt/event.o port/x11/event.c -Iinclude -O2 -DMANAGE_MEM -DNO_CHECK
833
834port/x11/SGI/opt/event.o : include/keys.hpp
835port/x11/SGI/opt/event.o : include/event.hpp
836port/x11/SGI/opt/event.o : include/sprite.hpp
837port/x11/SGI/opt/event.o : include/mouse.hpp
838port/x11/SGI/opt/event.o : include/macs.hpp
839port/x11/SGI/opt/event.o : include/gifread.hpp
840port/x11/SGI/opt/event.o : include/video.hpp
841port/x11/SGI/opt/event.o : include/mdlread.hpp
842port/x11/SGI/opt/event.o : include/jmalloc.hpp
843port/x11/SGI/opt/event.o : include/specs.hpp
844port/x11/SGI/opt/event.o : include/palette.hpp
845port/x11/SGI/opt/event.o : include/linked.hpp
846port/x11/SGI/opt/event.o : include/image.hpp
847port/x11/SGI/opt/event.o : include/xinclude.h
848port/x11/SGI/opt/event.o : include/system.h
849./SGI/opt/jwindow.o : jwindow.c
850        g++ -c -o ./SGI/opt/jwindow.o jwindow.c -Iinclude -O2 -DMANAGE_MEM -DNO_CHECK
851
852./SGI/opt/jwindow.o : include/timage.hpp
853./SGI/opt/jwindow.o : include/fonts.hpp
854./SGI/opt/jwindow.o : include/jwindow.hpp
855./SGI/opt/jwindow.o : include/filter.hpp
856./SGI/opt/jwindow.o : include/mouse.hpp
857./SGI/opt/jwindow.o : include/macs.hpp
858./SGI/opt/jwindow.o : include/sprite.hpp
859./SGI/opt/jwindow.o : include/keys.hpp
860./SGI/opt/jwindow.o : include/event.hpp
861./SGI/opt/jwindow.o : include/jmalloc.hpp
862./SGI/opt/jwindow.o : include/specs.hpp
863./SGI/opt/jwindow.o : include/palette.hpp
864./SGI/opt/jwindow.o : include/linked.hpp
865./SGI/opt/jwindow.o : include/image.hpp
866./SGI/opt/jwindow.o : include/system.h
867./SGI/opt/jwindow.o : include/video.hpp
868
869./SGI/opt/joy.a : $(SGI_joy_opt_o_files)
870        ar ruvs ./SGI/opt/joy.a \
871        port/unix/SGI/opt/joystick.o
872
873port/unix/SGI/opt/joystick.o : port/unix/joystick.c
874        g++ -c -o port/unix/SGI/opt/joystick.o port/unix/joystick.c -Iinclude -O2 -DMANAGE_MEM -DNO_CHECK
875
876port/unix/SGI/opt/joystick.o : port/unix/joystick.c
877
878./SGI/opt/sound.a : $(SGI_sound_opt_o_files)
879        ar ruvs ./SGI/opt/sound.a \
880        port/sgi/SGI/opt/sound.o \
881        ./SGI/opt/readwav.o
882
883port/sgi/SGI/opt/sound.o : port/sgi/sound.c
884        g++ -c -o port/sgi/SGI/opt/sound.o port/sgi/sound.c -Iinclude -O2 -DMANAGE_MEM -DNO_CHECK
885
886port/sgi/SGI/opt/sound.o : include/timing.hpp
887port/sgi/SGI/opt/sound.o : include/dprint.hpp
888port/sgi/SGI/opt/sound.o : include/jmalloc.hpp
889port/sgi/SGI/opt/sound.o : include/linked.hpp
890port/sgi/SGI/opt/sound.o : include/specs.hpp
891port/sgi/SGI/opt/sound.o : include/readwav.hpp
892port/sgi/SGI/opt/sound.o : include/sound.hpp
893port/sgi/SGI/opt/sound.o : include/system.h
894port/sgi/SGI/opt/sound.o : include/macs.hpp
895./SGI/opt/readwav.o : readwav.c
896        g++ -c -o ./SGI/opt/readwav.o readwav.c -Iinclude -O2 -DMANAGE_MEM -DNO_CHECK
897
898./SGI/opt/readwav.o : include/dprint.hpp
899./SGI/opt/readwav.o : include/macs.hpp
900./SGI/opt/readwav.o : include/system.h
901./SGI/opt/readwav.o : include/jmalloc.hpp
902./SGI/opt/readwav.o : include/linked.hpp
903./SGI/opt/readwav.o : include/specs.hpp
904./SGI/opt/readwav.o : include/readwav.hpp
905
906./SGI/opt/dir.a : $(SGI_dir_opt_o_files)
907        ar ruvs ./SGI/opt/dir.a \
908        port/unix/SGI/opt/jdir.o
909
910port/unix/SGI/opt/jdir.o : port/unix/jdir.c
911        g++ -c -o port/unix/SGI/opt/jdir.o port/unix/jdir.c -Iinclude -O2 -DMANAGE_MEM -DNO_CHECK
912
913port/unix/SGI/opt/jdir.o : include/jmalloc.hpp
914
915./SGI/opt/net.a : $(SGI_net_opt_o_files)
916        ar ruvs ./SGI/opt/net.a \
917        port/unix/SGI/opt/jnet.o
918
919port/unix/SGI/opt/jnet.o : port/unix/jnet.c
920        g++ -c -o port/unix/SGI/opt/jnet.o port/unix/jnet.c -Iinclude -O2 -DMANAGE_MEM -DNO_CHECK
921
922port/unix/SGI/opt/jnet.o : include/jmalloc.hpp
923port/unix/SGI/opt/jnet.o : include/packet.hpp
924port/unix/SGI/opt/jnet.o : include/system.h
925port/unix/SGI/opt/jnet.o : include/macs.hpp
926port/unix/SGI/opt/jnet.o : include/jnet.hpp
927
928./SGI/opt/gui.a : $(SGI_gui_opt_o_files)
929        ar ruvs ./SGI/opt/gui.a \
930        ./SGI/opt/pmenu.o \
931        ./SGI/opt/scroller.o \
932        ./SGI/opt/filesel.o \
933        ./SGI/opt/tools.o \
934        ./SGI/opt/guistat.o
935
936./SGI/opt/pmenu.o : pmenu.c
937        g++ -c -o ./SGI/opt/pmenu.o pmenu.c -Iinclude -O2 -DMANAGE_MEM -DNO_CHECK
938
939./SGI/opt/pmenu.o : include/timage.hpp
940./SGI/opt/pmenu.o : include/fonts.hpp
941./SGI/opt/pmenu.o : include/filter.hpp
942./SGI/opt/pmenu.o : include/mouse.hpp
943./SGI/opt/pmenu.o : include/macs.hpp
944./SGI/opt/pmenu.o : include/sprite.hpp
945./SGI/opt/pmenu.o : include/keys.hpp
946./SGI/opt/pmenu.o : include/event.hpp
947./SGI/opt/pmenu.o : include/specs.hpp
948./SGI/opt/pmenu.o : include/palette.hpp
949./SGI/opt/pmenu.o : include/linked.hpp
950./SGI/opt/pmenu.o : include/image.hpp
951./SGI/opt/pmenu.o : include/system.h
952./SGI/opt/pmenu.o : include/video.hpp
953./SGI/opt/pmenu.o : include/jwindow.hpp
954./SGI/opt/pmenu.o : include/input.hpp
955./SGI/opt/pmenu.o : include/jmalloc.hpp
956./SGI/opt/pmenu.o : include/pmenu.hpp
957./SGI/opt/scroller.o : scroller.c
958        g++ -c -o ./SGI/opt/scroller.o scroller.c -Iinclude -O2 -DMANAGE_MEM -DNO_CHECK
959
960./SGI/opt/scroller.o : include/timage.hpp
961./SGI/opt/scroller.o : include/fonts.hpp
962./SGI/opt/scroller.o : include/filter.hpp
963./SGI/opt/scroller.o : include/mouse.hpp
964./SGI/opt/scroller.o : include/macs.hpp
965./SGI/opt/scroller.o : include/sprite.hpp
966./SGI/opt/scroller.o : include/keys.hpp
967./SGI/opt/scroller.o : include/event.hpp
968./SGI/opt/scroller.o : include/jmalloc.hpp
969./SGI/opt/scroller.o : include/specs.hpp
970./SGI/opt/scroller.o : include/palette.hpp
971./SGI/opt/scroller.o : include/linked.hpp
972./SGI/opt/scroller.o : include/image.hpp
973./SGI/opt/scroller.o : include/system.h
974./SGI/opt/scroller.o : include/video.hpp
975./SGI/opt/scroller.o : include/jwindow.hpp
976./SGI/opt/scroller.o : include/input.hpp
977./SGI/opt/scroller.o : include/scroller.hpp
978./SGI/opt/filesel.o : filesel.c
979        g++ -c -o ./SGI/opt/filesel.o filesel.c -Iinclude -O2 -DMANAGE_MEM -DNO_CHECK
980
981./SGI/opt/filesel.o : include/jdir.hpp
982./SGI/opt/filesel.o : include/scroller.hpp
983./SGI/opt/filesel.o : include/input.hpp
984./SGI/opt/filesel.o : include/timage.hpp
985./SGI/opt/filesel.o : include/fonts.hpp
986./SGI/opt/filesel.o : include/filter.hpp
987./SGI/opt/filesel.o : include/mouse.hpp
988./SGI/opt/filesel.o : include/macs.hpp
989./SGI/opt/filesel.o : include/sprite.hpp
990./SGI/opt/filesel.o : include/keys.hpp
991./SGI/opt/filesel.o : include/event.hpp
992./SGI/opt/filesel.o : include/jmalloc.hpp
993./SGI/opt/filesel.o : include/specs.hpp
994./SGI/opt/filesel.o : include/palette.hpp
995./SGI/opt/filesel.o : include/linked.hpp
996./SGI/opt/filesel.o : include/image.hpp
997./SGI/opt/filesel.o : include/system.h
998./SGI/opt/filesel.o : include/video.hpp
999./SGI/opt/filesel.o : include/jwindow.hpp
1000./SGI/opt/filesel.o : include/filesel.hpp
1001./SGI/opt/tools.o : tools.c
1002        g++ -c -o ./SGI/opt/tools.o tools.c -Iinclude -O2 -DMANAGE_MEM -DNO_CHECK
1003
1004./SGI/opt/tools.o : include/visobj.hpp
1005./SGI/opt/tools.o : include/scroller.hpp
1006./SGI/opt/tools.o : include/input.hpp
1007./SGI/opt/tools.o : include/timage.hpp
1008./SGI/opt/tools.o : include/fonts.hpp
1009./SGI/opt/tools.o : include/filter.hpp
1010./SGI/opt/tools.o : include/mouse.hpp
1011./SGI/opt/tools.o : include/macs.hpp
1012./SGI/opt/tools.o : include/sprite.hpp
1013./SGI/opt/tools.o : include/keys.hpp
1014./SGI/opt/tools.o : include/event.hpp
1015./SGI/opt/tools.o : include/jmalloc.hpp
1016./SGI/opt/tools.o : include/specs.hpp
1017./SGI/opt/tools.o : include/palette.hpp
1018./SGI/opt/tools.o : include/linked.hpp
1019./SGI/opt/tools.o : include/image.hpp
1020./SGI/opt/tools.o : include/system.h
1021./SGI/opt/tools.o : include/video.hpp
1022./SGI/opt/tools.o : include/jwindow.hpp
1023./SGI/opt/tools.o : include/tools.hpp
1024./SGI/opt/guistat.o : guistat.c
1025        g++ -c -o ./SGI/opt/guistat.o guistat.c -Iinclude -O2 -DMANAGE_MEM -DNO_CHECK
1026
1027./SGI/opt/guistat.o : include/guistat.hpp
1028./SGI/opt/guistat.o : include/timing.hpp
1029./SGI/opt/guistat.o : include/timage.hpp
1030./SGI/opt/guistat.o : include/fonts.hpp
1031./SGI/opt/guistat.o : include/filter.hpp
1032./SGI/opt/guistat.o : include/mouse.hpp
1033./SGI/opt/guistat.o : include/macs.hpp
1034./SGI/opt/guistat.o : include/sprite.hpp
1035./SGI/opt/guistat.o : include/keys.hpp
1036./SGI/opt/guistat.o : include/event.hpp
1037./SGI/opt/guistat.o : include/jmalloc.hpp
1038./SGI/opt/guistat.o : include/specs.hpp
1039./SGI/opt/guistat.o : include/palette.hpp
1040./SGI/opt/guistat.o : include/linked.hpp
1041./SGI/opt/guistat.o : include/image.hpp
1042./SGI/opt/guistat.o : include/system.h
1043./SGI/opt/guistat.o : include/video.hpp
1044./SGI/opt/guistat.o : include/jwindow.hpp
1045./SGI/opt/guistat.o : include/visobj.hpp
1046./SGI/opt/guistat.o : include/status.hpp
1047
1048./SGI/opt/packet.a : $(SGI_packet_opt_o_files)
1049        ar ruvs ./SGI/opt/packet.a \
1050        ./SGI/opt/packet.o
1051
1052./SGI/opt/packet.o : packet.c
1053        g++ -c -o ./SGI/opt/packet.o packet.c -Iinclude -O2 -DMANAGE_MEM -DNO_CHECK
1054
1055./SGI/opt/packet.o : include/jmalloc.hpp
1056./SGI/opt/packet.o : include/system.h
1057./SGI/opt/packet.o : include/macs.hpp
1058./SGI/opt/packet.o : include/packet.hpp
1059
1060./SGI/opt/image.a : $(SGI_image_opt_o_files)
1061        ar ruvs ./SGI/opt/image.a \
1062        ./SGI/opt/filter.o \
1063        ./SGI/opt/gifread.o \
1064        ./SGI/opt/globals.o \
1065        ./SGI/opt/image.o \
1066        ./SGI/opt/linked.o \
1067        ./SGI/opt/input.o \
1068        ./SGI/opt/mdlread.o \
1069        ./SGI/opt/palette.o \
1070        ./SGI/opt/ppmread.o \
1071        ./SGI/opt/include.o \
1072        ./SGI/opt/xwdread.o \
1073        ./SGI/opt/fonts.o \
1074        ./SGI/opt/decoder.o \
1075        ./SGI/opt/loader.o \
1076        ./SGI/opt/glread.o \
1077        ./SGI/opt/texture.o \
1078        ./SGI/opt/specs.o \
1079        ./SGI/opt/supmorph.o \
1080        ./SGI/opt/image24.o \
1081        ./SGI/opt/pcxread.o \
1082        ./SGI/opt/timage.o \
1083        ./SGI/opt/jmalloc.o \
1084        ./SGI/opt/jrand.o \
1085        ./SGI/opt/lbmread.o \
1086        ./SGI/opt/keys.o \
1087        ./SGI/opt/dprint.o \
1088        ./SGI/opt/status.o \
1089        ./SGI/opt/visobj.o
1090
1091./SGI/opt/filter.o : filter.c
1092        g++ -c -o ./SGI/opt/filter.o filter.c -Iinclude -O2 -DMANAGE_MEM -DNO_CHECK
1093
1094./SGI/opt/filter.o : include/filter.hpp
1095./SGI/opt/filter.o : include/macs.hpp
1096./SGI/opt/filter.o : include/system.h
1097./SGI/opt/filter.o : include/jmalloc.hpp
1098./SGI/opt/filter.o : include/specs.hpp
1099./SGI/opt/filter.o : include/palette.hpp
1100./SGI/opt/filter.o : include/linked.hpp
1101./SGI/opt/filter.o : include/image.hpp
1102./SGI/opt/gifread.o : gifread.c
1103        g++ -c -o ./SGI/opt/gifread.o gifread.c -Iinclude -O2 -DMANAGE_MEM -DNO_CHECK
1104
1105./SGI/opt/gifread.o : include/macs.hpp
1106./SGI/opt/gifread.o : include/dir.h
1107./SGI/opt/gifread.o : include/dos.h
1108./SGI/opt/gifread.o : include/std.h
1109./SGI/opt/gifread.o : include/gifdecod.hpp
1110./SGI/opt/gifread.o : include/video.hpp
1111./SGI/opt/gifread.o : include/system.h
1112./SGI/opt/gifread.o : include/jmalloc.hpp
1113./SGI/opt/gifread.o : include/specs.hpp
1114./SGI/opt/gifread.o : include/palette.hpp
1115./SGI/opt/gifread.o : include/linked.hpp
1116./SGI/opt/gifread.o : include/image.hpp
1117./SGI/opt/gifread.o : include/gifread.hpp
1118./SGI/opt/globals.o : globals.c
1119        g++ -c -o ./SGI/opt/globals.o globals.c -Iinclude -O2 -DMANAGE_MEM -DNO_CHECK
1120
1121./SGI/opt/globals.o : globals.c
1122./SGI/opt/image.o : image.c
1123        g++ -c -o ./SGI/opt/image.o image.c -Iinclude -O2 -DMANAGE_MEM -DNO_CHECK
1124
1125./SGI/opt/image.o : include/exitproc.hpp
1126./SGI/opt/image.o : include/dos.h
1127./SGI/opt/image.o : include/macs.hpp
1128./SGI/opt/image.o : include/jmalloc.hpp
1129./SGI/opt/image.o : include/specs.hpp
1130./SGI/opt/image.o : include/palette.hpp
1131./SGI/opt/image.o : include/image.hpp
1132./SGI/opt/image.o : include/linked.hpp
1133./SGI/opt/image.o : include/system.h
1134./SGI/opt/image.o : include/emm.hpp
1135./SGI/opt/linked.o : linked.c
1136        g++ -c -o ./SGI/opt/linked.o linked.c -Iinclude -O2 -DMANAGE_MEM -DNO_CHECK
1137
1138./SGI/opt/linked.o : include/linked.hpp
1139./SGI/opt/input.o : input.c
1140        g++ -c -o ./SGI/opt/input.o input.c -Iinclude -O2 -DMANAGE_MEM -DNO_CHECK
1141
1142./SGI/opt/input.o : include/timage.hpp
1143./SGI/opt/input.o : include/fonts.hpp
1144./SGI/opt/input.o : include/filter.hpp
1145./SGI/opt/input.o : include/mouse.hpp
1146./SGI/opt/input.o : include/macs.hpp
1147./SGI/opt/input.o : include/sprite.hpp
1148./SGI/opt/input.o : include/keys.hpp
1149./SGI/opt/input.o : include/event.hpp
1150./SGI/opt/input.o : include/jmalloc.hpp
1151./SGI/opt/input.o : include/specs.hpp
1152./SGI/opt/input.o : include/palette.hpp
1153./SGI/opt/input.o : include/linked.hpp
1154./SGI/opt/input.o : include/image.hpp
1155./SGI/opt/input.o : include/system.h
1156./SGI/opt/input.o : include/video.hpp
1157./SGI/opt/input.o : include/jwindow.hpp
1158./SGI/opt/input.o : include/input.hpp
1159./SGI/opt/mdlread.o : mdlread.c
1160        g++ -c -o ./SGI/opt/mdlread.o mdlread.c -Iinclude -O2 -DMANAGE_MEM -DNO_CHECK
1161
1162./SGI/opt/mdlread.o : include/macs.hpp
1163./SGI/opt/mdlread.o : include/image.hpp
1164./SGI/opt/mdlread.o : include/system.h
1165./SGI/opt/mdlread.o : include/jmalloc.hpp
1166./SGI/opt/mdlread.o : include/specs.hpp
1167./SGI/opt/mdlread.o : include/linked.hpp
1168./SGI/opt/mdlread.o : include/palette.hpp
1169./SGI/opt/mdlread.o : include/mdlread.hpp
1170./SGI/opt/palette.o : palette.c
1171        g++ -c -o ./SGI/opt/palette.o palette.c -Iinclude -O2 -DMANAGE_MEM -DNO_CHECK
1172
1173./SGI/opt/palette.o : include/filter.hpp
1174./SGI/opt/palette.o : include/video.hpp
1175./SGI/opt/palette.o : include/dos.h
1176./SGI/opt/palette.o : include/macs.hpp
1177./SGI/opt/palette.o : include/image.hpp
1178./SGI/opt/palette.o : include/system.h
1179./SGI/opt/palette.o : include/jmalloc.hpp
1180./SGI/opt/palette.o : include/specs.hpp
1181./SGI/opt/palette.o : include/linked.hpp
1182./SGI/opt/palette.o : include/palette.hpp
1183./SGI/opt/ppmread.o : ppmread.c
1184        g++ -c -o ./SGI/opt/ppmread.o ppmread.c -Iinclude -O2 -DMANAGE_MEM -DNO_CHECK
1185
1186./SGI/opt/ppmread.o : include/ppmread.hpp
1187./SGI/opt/ppmread.o : include/macs.hpp
1188./SGI/opt/ppmread.o : include/system.h
1189./SGI/opt/ppmread.o : include/jmalloc.hpp
1190./SGI/opt/ppmread.o : include/specs.hpp
1191./SGI/opt/ppmread.o : include/palette.hpp
1192./SGI/opt/ppmread.o : include/linked.hpp
1193./SGI/opt/ppmread.o : include/image.hpp
1194./SGI/opt/include.o : include.c
1195        g++ -c -o ./SGI/opt/include.o include.c -Iinclude -O2 -DMANAGE_MEM -DNO_CHECK
1196
1197./SGI/opt/include.o : include/system.h
1198./SGI/opt/include.o : include/jmalloc.hpp
1199./SGI/opt/include.o : include/specs.hpp
1200./SGI/opt/include.o : include/palette.hpp
1201./SGI/opt/include.o : include/linked.hpp
1202./SGI/opt/include.o : include/image.hpp
1203./SGI/opt/include.o : include/include.hpp
1204./SGI/opt/xwdread.o : xwdread.c
1205        g++ -c -o ./SGI/opt/xwdread.o xwdread.c -Iinclude -O2 -DMANAGE_MEM -DNO_CHECK
1206
1207./SGI/opt/xwdread.o : include/image24.hpp
1208./SGI/opt/xwdread.o : include/main.hpp
1209./SGI/opt/xwdread.o : include/dos.h
1210./SGI/opt/xwdread.o : include/video.hpp
1211./SGI/opt/xwdread.o : include/mouse.hpp
1212./SGI/opt/xwdread.o : include/macs.hpp
1213./SGI/opt/xwdread.o : include/sprite.hpp
1214./SGI/opt/xwdread.o : include/keys.hpp
1215./SGI/opt/xwdread.o : include/event.hpp
1216./SGI/opt/xwdread.o : include/system.h
1217./SGI/opt/xwdread.o : include/jmalloc.hpp
1218./SGI/opt/xwdread.o : include/specs.hpp
1219./SGI/opt/xwdread.o : include/palette.hpp
1220./SGI/opt/xwdread.o : include/linked.hpp
1221./SGI/opt/xwdread.o : include/image.hpp
1222./SGI/opt/xwdread.o : include/filter.hpp
1223./SGI/opt/fonts.o : fonts.c
1224        g++ -c -o ./SGI/opt/fonts.o fonts.c -Iinclude -O2 -DMANAGE_MEM -DNO_CHECK
1225
1226./SGI/opt/fonts.o : include/filter.hpp
1227./SGI/opt/fonts.o : include/macs.hpp
1228./SGI/opt/fonts.o : include/timage.hpp
1229./SGI/opt/fonts.o : include/system.h
1230./SGI/opt/fonts.o : include/jmalloc.hpp
1231./SGI/opt/fonts.o : include/specs.hpp
1232./SGI/opt/fonts.o : include/palette.hpp
1233./SGI/opt/fonts.o : include/linked.hpp
1234./SGI/opt/fonts.o : include/image.hpp
1235./SGI/opt/fonts.o : include/fonts.hpp
1236./SGI/opt/decoder.o : decoder.c
1237        g++ -c -o ./SGI/opt/decoder.o decoder.c -Iinclude -O2 -DMANAGE_MEM -DNO_CHECK
1238
1239./SGI/opt/decoder.o : include/macs.hpp
1240./SGI/opt/decoder.o : include/system.h
1241./SGI/opt/decoder.o : include/jmalloc.hpp
1242./SGI/opt/decoder.o : include/specs.hpp
1243./SGI/opt/decoder.o : include/palette.hpp
1244./SGI/opt/decoder.o : include/linked.hpp
1245./SGI/opt/decoder.o : include/image.hpp
1246./SGI/opt/decoder.o : include/errs.h
1247./SGI/opt/loader.o : loader.c
1248        g++ -c -o ./SGI/opt/loader.o loader.c -Iinclude -O2 -DMANAGE_MEM -DNO_CHECK
1249
1250./SGI/opt/loader.o : include/lbmread.hpp
1251./SGI/opt/loader.o : include/pcxread.hpp
1252./SGI/opt/loader.o : include/glread.hpp
1253./SGI/opt/loader.o : include/xwdread.hpp
1254./SGI/opt/loader.o : include/ppmread.hpp
1255./SGI/opt/loader.o : include/mdlread.hpp
1256./SGI/opt/loader.o : include/filter.hpp
1257./SGI/opt/loader.o : include/macs.hpp
1258./SGI/opt/loader.o : include/image24.hpp
1259./SGI/opt/loader.o : include/system.h
1260./SGI/opt/loader.o : include/jmalloc.hpp
1261./SGI/opt/loader.o : include/specs.hpp
1262./SGI/opt/loader.o : include/palette.hpp
1263./SGI/opt/loader.o : include/linked.hpp
1264./SGI/opt/loader.o : include/image.hpp
1265./SGI/opt/loader.o : include/loader.hpp
1266./SGI/opt/glread.o : glread.c
1267        g++ -c -o ./SGI/opt/glread.o glread.c -Iinclude -O2 -DMANAGE_MEM -DNO_CHECK
1268
1269./SGI/opt/glread.o : include/video.hpp
1270./SGI/opt/glread.o : include/jmalloc.hpp
1271./SGI/opt/glread.o : include/specs.hpp
1272./SGI/opt/glread.o : include/palette.hpp
1273./SGI/opt/glread.o : include/linked.hpp
1274./SGI/opt/glread.o : include/image.hpp
1275./SGI/opt/glread.o : include/system.h
1276./SGI/opt/glread.o : include/macs.hpp
1277./SGI/opt/texture.o : texture.c
1278        g++ -c -o ./SGI/opt/texture.o texture.c -Iinclude -O2 -DMANAGE_MEM -DNO_CHECK
1279
1280./SGI/opt/texture.o : include/mouse.hpp
1281./SGI/opt/texture.o : include/sprite.hpp
1282./SGI/opt/texture.o : include/keys.hpp
1283./SGI/opt/texture.o : include/event.hpp
1284./SGI/opt/texture.o : include/macs.hpp
1285./SGI/opt/texture.o : include/video.hpp
1286./SGI/opt/texture.o : include/system.h
1287./SGI/opt/texture.o : include/jmalloc.hpp
1288./SGI/opt/texture.o : include/specs.hpp
1289./SGI/opt/texture.o : include/palette.hpp
1290./SGI/opt/texture.o : include/linked.hpp
1291./SGI/opt/texture.o : include/image.hpp
1292./SGI/opt/specs.o : specs.c
1293        g++ -c -o ./SGI/opt/specs.o specs.c -Iinclude -O2 -DMANAGE_MEM -DNO_CHECK
1294
1295./SGI/opt/specs.o : include/dprint.hpp
1296./SGI/opt/specs.o : include/system.h
1297./SGI/opt/specs.o : include/jmalloc.hpp
1298./SGI/opt/specs.o : include/specs.hpp
1299./SGI/opt/specs.o : include/palette.hpp
1300./SGI/opt/specs.o : include/linked.hpp
1301./SGI/opt/specs.o : include/image.hpp
1302./SGI/opt/supmorph.o : supmorph.c
1303        g++ -c -o ./SGI/opt/supmorph.o supmorph.c -Iinclude -O2 -DMANAGE_MEM -DNO_CHECK
1304
1305./SGI/opt/supmorph.o : include/jrand.hpp
1306./SGI/opt/supmorph.o : include/video.hpp
1307./SGI/opt/supmorph.o : include/timing.hpp
1308./SGI/opt/supmorph.o : include/filter.hpp
1309./SGI/opt/supmorph.o : include/macs.hpp
1310./SGI/opt/supmorph.o : include/system.h
1311./SGI/opt/supmorph.o : include/specs.hpp
1312./SGI/opt/supmorph.o : include/palette.hpp
1313./SGI/opt/supmorph.o : include/linked.hpp
1314./SGI/opt/supmorph.o : include/image.hpp
1315./SGI/opt/supmorph.o : include/timage.hpp
1316./SGI/opt/supmorph.o : include/jmalloc.hpp
1317./SGI/opt/supmorph.o : include/supmorph.hpp
1318./SGI/opt/image24.o : image24.c
1319        g++ -c -o ./SGI/opt/image24.o image24.c -Iinclude -O2 -DMANAGE_MEM -DNO_CHECK
1320
1321./SGI/opt/image24.o : include/image.hpp
1322./SGI/opt/image24.o : include/filter.hpp
1323./SGI/opt/image24.o : include/macs.hpp
1324./SGI/opt/image24.o : include/system.h
1325./SGI/opt/image24.o : include/jmalloc.hpp
1326./SGI/opt/image24.o : include/specs.hpp
1327./SGI/opt/image24.o : include/linked.hpp
1328./SGI/opt/image24.o : include/palette.hpp
1329./SGI/opt/image24.o : include/image24.hpp
1330./SGI/opt/pcxread.o : pcxread.c
1331        g++ -c -o ./SGI/opt/pcxread.o pcxread.c -Iinclude -O2 -DMANAGE_MEM -DNO_CHECK
1332
1333./SGI/opt/pcxread.o : include/filter.hpp
1334./SGI/opt/pcxread.o : include/macs.hpp
1335./SGI/opt/pcxread.o : include/image24.hpp
1336./SGI/opt/pcxread.o : include/system.h
1337./SGI/opt/pcxread.o : include/jmalloc.hpp
1338./SGI/opt/pcxread.o : include/specs.hpp
1339./SGI/opt/pcxread.o : include/palette.hpp
1340./SGI/opt/pcxread.o : include/linked.hpp
1341./SGI/opt/pcxread.o : include/image.hpp
1342./SGI/opt/pcxread.o : include/pcxread.hpp
1343./SGI/opt/timage.o : timage.c
1344        g++ -c -o ./SGI/opt/timage.o timage.c -Iinclude -O2 -DMANAGE_MEM -DNO_CHECK
1345
1346./SGI/opt/timage.o : include/filter.hpp
1347./SGI/opt/timage.o : include/macs.hpp
1348./SGI/opt/timage.o : include/system.h
1349./SGI/opt/timage.o : include/jmalloc.hpp
1350./SGI/opt/timage.o : include/specs.hpp
1351./SGI/opt/timage.o : include/palette.hpp
1352./SGI/opt/timage.o : include/linked.hpp
1353./SGI/opt/timage.o : include/image.hpp
1354./SGI/opt/timage.o : include/timage.hpp
1355./SGI/opt/jmalloc.o : jmalloc.c
1356        g++ -c -o ./SGI/opt/jmalloc.o jmalloc.c -Iinclude -O2 -DMANAGE_MEM -DNO_CHECK
1357
1358./SGI/opt/jmalloc.o : include/jmalloc.hpp
1359./SGI/opt/jmalloc.o : include/system.h
1360./SGI/opt/jmalloc.o : include/macs.hpp
1361./SGI/opt/jmalloc.o : include/doscall.hpp
1362./SGI/opt/jrand.o : jrand.c
1363        g++ -c -o ./SGI/opt/jrand.o jrand.c -Iinclude -O2 -DMANAGE_MEM -DNO_CHECK
1364
1365./SGI/opt/jrand.o : include/jrand.hpp
1366./SGI/opt/lbmread.o : lbmread.c
1367        g++ -c -o ./SGI/opt/lbmread.o lbmread.c -Iinclude -O2 -DMANAGE_MEM -DNO_CHECK
1368
1369./SGI/opt/lbmread.o : include/system.h
1370./SGI/opt/lbmread.o : include/jmalloc.hpp
1371./SGI/opt/lbmread.o : include/specs.hpp
1372./SGI/opt/lbmread.o : include/palette.hpp
1373./SGI/opt/lbmread.o : include/linked.hpp
1374./SGI/opt/lbmread.o : include/image.hpp
1375./SGI/opt/lbmread.o : include/lbmread.hpp
1376./SGI/opt/keys.o : keys.c
1377        g++ -c -o ./SGI/opt/keys.o keys.c -Iinclude -O2 -DMANAGE_MEM -DNO_CHECK
1378
1379./SGI/opt/keys.o : include/keys.hpp
1380./SGI/opt/dprint.o : dprint.c
1381        g++ -c -o ./SGI/opt/dprint.o dprint.c -Iinclude -O2 -DMANAGE_MEM -DNO_CHECK
1382
1383./SGI/opt/dprint.o : include/system.h
1384./SGI/opt/dprint.o : include/macs.hpp
1385./SGI/opt/status.o : status.c
1386        g++ -c -o ./SGI/opt/status.o status.c -Iinclude -O2 -DMANAGE_MEM -DNO_CHECK
1387
1388./SGI/opt/status.o : include/dprint.hpp
1389./SGI/opt/status.o : include/timage.hpp
1390./SGI/opt/status.o : include/fonts.hpp
1391./SGI/opt/status.o : include/filter.hpp
1392./SGI/opt/status.o : include/mouse.hpp
1393./SGI/opt/status.o : include/sprite.hpp
1394./SGI/opt/status.o : include/keys.hpp
1395./SGI/opt/status.o : include/event.hpp
1396./SGI/opt/status.o : include/jmalloc.hpp
1397./SGI/opt/status.o : include/specs.hpp
1398./SGI/opt/status.o : include/palette.hpp
1399./SGI/opt/status.o : include/linked.hpp
1400./SGI/opt/status.o : include/image.hpp
1401./SGI/opt/status.o : include/video.hpp
1402./SGI/opt/status.o : include/jwindow.hpp
1403./SGI/opt/status.o : include/visobj.hpp
1404./SGI/opt/status.o : include/status.hpp
1405./SGI/opt/status.o : include/system.h
1406./SGI/opt/status.o : include/macs.hpp
1407./SGI/opt/visobj.o : visobj.c
1408        g++ -c -o ./SGI/opt/visobj.o visobj.c -Iinclude -O2 -DMANAGE_MEM -DNO_CHECK
1409
1410./SGI/opt/visobj.o : include/timage.hpp
1411./SGI/opt/visobj.o : include/fonts.hpp
1412./SGI/opt/visobj.o : include/filter.hpp
1413./SGI/opt/visobj.o : include/mouse.hpp
1414./SGI/opt/visobj.o : include/macs.hpp
1415./SGI/opt/visobj.o : include/sprite.hpp
1416./SGI/opt/visobj.o : include/keys.hpp
1417./SGI/opt/visobj.o : include/event.hpp
1418./SGI/opt/visobj.o : include/jmalloc.hpp
1419./SGI/opt/visobj.o : include/specs.hpp
1420./SGI/opt/visobj.o : include/palette.hpp
1421./SGI/opt/visobj.o : include/linked.hpp
1422./SGI/opt/visobj.o : include/image.hpp
1423./SGI/opt/visobj.o : include/system.h
1424./SGI/opt/visobj.o : include/video.hpp
1425./SGI/opt/visobj.o : include/jwindow.hpp
1426./SGI/opt/visobj.o : include/visobj.hpp
1427
1428SGI_image_profile_o_files = \
1429        ./SGI/profile/filter.o \
1430        ./SGI/profile/gifread.o \
1431        ./SGI/profile/globals.o \
1432        ./SGI/profile/image.o \
1433        ./SGI/profile/linked.o \
1434        ./SGI/profile/input.o \
1435        ./SGI/profile/mdlread.o \
1436        ./SGI/profile/palette.o \
1437        ./SGI/profile/ppmread.o \
1438        ./SGI/profile/include.o \
1439        ./SGI/profile/xwdread.o \
1440        ./SGI/profile/fonts.o \
1441        ./SGI/profile/decoder.o \
1442        ./SGI/profile/loader.o \
1443        ./SGI/profile/glread.o \
1444        ./SGI/profile/texture.o \
1445        ./SGI/profile/specs.o \
1446        ./SGI/profile/supmorph.o \
1447        ./SGI/profile/image24.o \
1448        ./SGI/profile/pcxread.o \
1449        ./SGI/profile/timage.o \
1450        ./SGI/profile/jmalloc.o \
1451        ./SGI/profile/jrand.o \
1452        ./SGI/profile/lbmread.o \
1453        ./SGI/profile/keys.o \
1454        ./SGI/profile/dprint.o \
1455        ./SGI/profile/status.o \
1456        ./SGI/profile/visobj.o
1457
1458SGI_packet_profile_o_files = \
1459        ./SGI/profile/packet.o
1460
1461SGI_gui_profile_o_files = \
1462        ./SGI/profile/pmenu.o \
1463        ./SGI/profile/scroller.o \
1464        ./SGI/profile/filesel.o \
1465        ./SGI/profile/tools.o \
1466        ./SGI/profile/guistat.o
1467
1468SGI_net_profile_o_files = \
1469        port/unix/SGI/profile/jnet.o
1470
1471SGI_dir_profile_o_files = \
1472        port/unix/SGI/profile/jdir.o
1473
1474SGI_sound_profile_o_files = \
1475        port/sgi/SGI/profile/sound.o \
1476        ./SGI/profile/readwav.o
1477
1478SGI_joy_profile_o_files = \
1479        port/unix/SGI/profile/joystick.o
1480
1481SGI_winman_profile_o_files = \
1482        port/x11/SGI/profile/video.o \
1483        port/x11/SGI/profile/mouse.o \
1484        port/x11/SGI/profile/event.o \
1485        ./SGI/profile/jwindow.o
1486
1487SGI_time_profile_o_files = \
1488        port/sgi/SGI/profile/timing.o
1489
1490./SGI/profile/time.a : $(SGI_time_profile_o_files)
1491        ar ruvs ./SGI/profile/time.a \
1492        port/sgi/SGI/profile/timing.o
1493
1494port/sgi/SGI/profile/timing.o : port/sgi/timing.c
1495        g++ -c -o port/sgi/SGI/profile/timing.o port/sgi/timing.c -Iinclude -O2 -g -p -DMEM_CHECK -DMANAGE_MEM
1496
1497port/sgi/SGI/profile/timing.o : include/timing.hpp
1498
1499./SGI/profile/winman.a : $(SGI_winman_profile_o_files)
1500        ar ruvs ./SGI/profile/winman.a \
1501        port/x11/SGI/profile/video.o \
1502        port/x11/SGI/profile/mouse.o \
1503        port/x11/SGI/profile/event.o \
1504        ./SGI/profile/jwindow.o
1505
1506port/x11/SGI/profile/video.o : port/x11/video.c
1507        g++ -c -o port/x11/SGI/profile/video.o port/x11/video.c -Iinclude -O2 -g -p -DMEM_CHECK -DMANAGE_MEM
1508
1509port/x11/SGI/profile/video.o : include/bitmap.h
1510port/x11/SGI/profile/video.o : include/macs.hpp
1511port/x11/SGI/profile/video.o : include/xinclude.h
1512port/x11/SGI/profile/video.o : include/dos.h
1513port/x11/SGI/profile/video.o : include/video.hpp
1514port/x11/SGI/profile/video.o : include/globals.hpp
1515port/x11/SGI/profile/video.o : include/system.h
1516port/x11/SGI/profile/video.o : include/jmalloc.hpp
1517port/x11/SGI/profile/video.o : include/specs.hpp
1518port/x11/SGI/profile/video.o : include/palette.hpp
1519port/x11/SGI/profile/video.o : include/linked.hpp
1520port/x11/SGI/profile/video.o : include/image.hpp
1521port/x11/SGI/profile/video.o : include/filter.hpp
1522port/x11/SGI/profile/mouse.o : port/x11/mouse.c
1523        g++ -c -o port/x11/SGI/profile/mouse.o port/x11/mouse.c -Iinclude -O2 -g -p -DMEM_CHECK -DMANAGE_MEM
1524
1525port/x11/SGI/profile/mouse.o : include/xinclude.h
1526port/x11/SGI/profile/mouse.o : include/mouse.hpp
1527port/x11/SGI/profile/mouse.o : include/monoprnt.hpp
1528port/x11/SGI/profile/mouse.o : include/mdlread.hpp
1529port/x11/SGI/profile/mouse.o : include/filter.hpp
1530port/x11/SGI/profile/mouse.o : include/macs.hpp
1531port/x11/SGI/profile/mouse.o : include/sprite.hpp
1532port/x11/SGI/profile/mouse.o : include/jmalloc.hpp
1533port/x11/SGI/profile/mouse.o : include/specs.hpp
1534port/x11/SGI/profile/mouse.o : include/palette.hpp
1535port/x11/SGI/profile/mouse.o : include/linked.hpp
1536port/x11/SGI/profile/mouse.o : include/image.hpp
1537port/x11/SGI/profile/mouse.o : include/system.h
1538port/x11/SGI/profile/mouse.o : include/video.hpp
1539port/x11/SGI/profile/event.o : port/x11/event.c
1540        g++ -c -o port/x11/SGI/profile/event.o port/x11/event.c -Iinclude -O2 -g -p -DMEM_CHECK -DMANAGE_MEM
1541
1542port/x11/SGI/profile/event.o : include/keys.hpp
1543port/x11/SGI/profile/event.o : include/event.hpp
1544port/x11/SGI/profile/event.o : include/sprite.hpp
1545port/x11/SGI/profile/event.o : include/mouse.hpp
1546port/x11/SGI/profile/event.o : include/macs.hpp
1547port/x11/SGI/profile/event.o : include/gifread.hpp
1548port/x11/SGI/profile/event.o : include/video.hpp
1549port/x11/SGI/profile/event.o : include/mdlread.hpp
1550port/x11/SGI/profile/event.o : include/jmalloc.hpp
1551port/x11/SGI/profile/event.o : include/specs.hpp
1552port/x11/SGI/profile/event.o : include/palette.hpp
1553port/x11/SGI/profile/event.o : include/linked.hpp
1554port/x11/SGI/profile/event.o : include/image.hpp
1555port/x11/SGI/profile/event.o : include/xinclude.h
1556port/x11/SGI/profile/event.o : include/system.h
1557./SGI/profile/jwindow.o : jwindow.c
1558        g++ -c -o ./SGI/profile/jwindow.o jwindow.c -Iinclude -O2 -g -p -DMEM_CHECK -DMANAGE_MEM
1559
1560./SGI/profile/jwindow.o : include/timage.hpp
1561./SGI/profile/jwindow.o : include/fonts.hpp
1562./SGI/profile/jwindow.o : include/jwindow.hpp
1563./SGI/profile/jwindow.o : include/filter.hpp
1564./SGI/profile/jwindow.o : include/mouse.hpp
1565./SGI/profile/jwindow.o : include/macs.hpp
1566./SGI/profile/jwindow.o : include/sprite.hpp
1567./SGI/profile/jwindow.o : include/keys.hpp
1568./SGI/profile/jwindow.o : include/event.hpp
1569./SGI/profile/jwindow.o : include/jmalloc.hpp
1570./SGI/profile/jwindow.o : include/specs.hpp
1571./SGI/profile/jwindow.o : include/palette.hpp
1572./SGI/profile/jwindow.o : include/linked.hpp
1573./SGI/profile/jwindow.o : include/image.hpp
1574./SGI/profile/jwindow.o : include/system.h
1575./SGI/profile/jwindow.o : include/video.hpp
1576
1577./SGI/profile/joy.a : $(SGI_joy_profile_o_files)
1578        ar ruvs ./SGI/profile/joy.a \
1579        port/unix/SGI/profile/joystick.o
1580
1581port/unix/SGI/profile/joystick.o : port/unix/joystick.c
1582        g++ -c -o port/unix/SGI/profile/joystick.o port/unix/joystick.c -Iinclude -O2 -g -p -DMEM_CHECK -DMANAGE_MEM
1583
1584port/unix/SGI/profile/joystick.o : port/unix/joystick.c
1585
1586./SGI/profile/sound.a : $(SGI_sound_profile_o_files)
1587        ar ruvs ./SGI/profile/sound.a \
1588        port/sgi/SGI/profile/sound.o \
1589        ./SGI/profile/readwav.o
1590
1591port/sgi/SGI/profile/sound.o : port/sgi/sound.c
1592        g++ -c -o port/sgi/SGI/profile/sound.o port/sgi/sound.c -Iinclude -O2 -g -p -DMEM_CHECK -DMANAGE_MEM
1593
1594port/sgi/SGI/profile/sound.o : include/timing.hpp
1595port/sgi/SGI/profile/sound.o : include/dprint.hpp
1596port/sgi/SGI/profile/sound.o : include/jmalloc.hpp
1597port/sgi/SGI/profile/sound.o : include/linked.hpp
1598port/sgi/SGI/profile/sound.o : include/specs.hpp
1599port/sgi/SGI/profile/sound.o : include/readwav.hpp
1600port/sgi/SGI/profile/sound.o : include/sound.hpp
1601port/sgi/SGI/profile/sound.o : include/system.h
1602port/sgi/SGI/profile/sound.o : include/macs.hpp
1603./SGI/profile/readwav.o : readwav.c
1604        g++ -c -o ./SGI/profile/readwav.o readwav.c -Iinclude -O2 -g -p -DMEM_CHECK -DMANAGE_MEM
1605
1606./SGI/profile/readwav.o : include/dprint.hpp
1607./SGI/profile/readwav.o : include/macs.hpp
1608./SGI/profile/readwav.o : include/system.h
1609./SGI/profile/readwav.o : include/jmalloc.hpp
1610./SGI/profile/readwav.o : include/linked.hpp
1611./SGI/profile/readwav.o : include/specs.hpp
1612./SGI/profile/readwav.o : include/readwav.hpp
1613
1614./SGI/profile/dir.a : $(SGI_dir_profile_o_files)
1615        ar ruvs ./SGI/profile/dir.a \
1616        port/unix/SGI/profile/jdir.o
1617
1618port/unix/SGI/profile/jdir.o : port/unix/jdir.c
1619        g++ -c -o port/unix/SGI/profile/jdir.o port/unix/jdir.c -Iinclude -O2 -g -p -DMEM_CHECK -DMANAGE_MEM
1620
1621port/unix/SGI/profile/jdir.o : include/jmalloc.hpp
1622
1623./SGI/profile/net.a : $(SGI_net_profile_o_files)
1624        ar ruvs ./SGI/profile/net.a \
1625        port/unix/SGI/profile/jnet.o
1626
1627port/unix/SGI/profile/jnet.o : port/unix/jnet.c
1628        g++ -c -o port/unix/SGI/profile/jnet.o port/unix/jnet.c -Iinclude -O2 -g -p -DMEM_CHECK -DMANAGE_MEM
1629
1630port/unix/SGI/profile/jnet.o : include/jmalloc.hpp
1631port/unix/SGI/profile/jnet.o : include/packet.hpp
1632port/unix/SGI/profile/jnet.o : include/system.h
1633port/unix/SGI/profile/jnet.o : include/macs.hpp
1634port/unix/SGI/profile/jnet.o : include/jnet.hpp
1635
1636./SGI/profile/gui.a : $(SGI_gui_profile_o_files)
1637        ar ruvs ./SGI/profile/gui.a \
1638        ./SGI/profile/pmenu.o \
1639        ./SGI/profile/scroller.o \
1640        ./SGI/profile/filesel.o \
1641        ./SGI/profile/tools.o \
1642        ./SGI/profile/guistat.o
1643
1644./SGI/profile/pmenu.o : pmenu.c
1645        g++ -c -o ./SGI/profile/pmenu.o pmenu.c -Iinclude -O2 -g -p -DMEM_CHECK -DMANAGE_MEM
1646
1647./SGI/profile/pmenu.o : include/timage.hpp
1648./SGI/profile/pmenu.o : include/fonts.hpp
1649./SGI/profile/pmenu.o : include/filter.hpp
1650./SGI/profile/pmenu.o : include/mouse.hpp
1651./SGI/profile/pmenu.o : include/macs.hpp
1652./SGI/profile/pmenu.o : include/sprite.hpp
1653./SGI/profile/pmenu.o : include/keys.hpp
1654./SGI/profile/pmenu.o : include/event.hpp
1655./SGI/profile/pmenu.o : include/specs.hpp
1656./SGI/profile/pmenu.o : include/palette.hpp
1657./SGI/profile/pmenu.o : include/linked.hpp
1658./SGI/profile/pmenu.o : include/image.hpp
1659./SGI/profile/pmenu.o : include/system.h
1660./SGI/profile/pmenu.o : include/video.hpp
1661./SGI/profile/pmenu.o : include/jwindow.hpp
1662./SGI/profile/pmenu.o : include/input.hpp
1663./SGI/profile/pmenu.o : include/jmalloc.hpp
1664./SGI/profile/pmenu.o : include/pmenu.hpp
1665./SGI/profile/scroller.o : scroller.c
1666        g++ -c -o ./SGI/profile/scroller.o scroller.c -Iinclude -O2 -g -p -DMEM_CHECK -DMANAGE_MEM
1667
1668./SGI/profile/scroller.o : include/timage.hpp
1669./SGI/profile/scroller.o : include/fonts.hpp
1670./SGI/profile/scroller.o : include/filter.hpp
1671./SGI/profile/scroller.o : include/mouse.hpp
1672./SGI/profile/scroller.o : include/macs.hpp
1673./SGI/profile/scroller.o : include/sprite.hpp
1674./SGI/profile/scroller.o : include/keys.hpp
1675./SGI/profile/scroller.o : include/event.hpp
1676./SGI/profile/scroller.o : include/jmalloc.hpp
1677./SGI/profile/scroller.o : include/specs.hpp
1678./SGI/profile/scroller.o : include/palette.hpp
1679./SGI/profile/scroller.o : include/linked.hpp
1680./SGI/profile/scroller.o : include/image.hpp
1681./SGI/profile/scroller.o : include/system.h
1682./SGI/profile/scroller.o : include/video.hpp
1683./SGI/profile/scroller.o : include/jwindow.hpp
1684./SGI/profile/scroller.o : include/input.hpp
1685./SGI/profile/scroller.o : include/scroller.hpp
1686./SGI/profile/filesel.o : filesel.c
1687        g++ -c -o ./SGI/profile/filesel.o filesel.c -Iinclude -O2 -g -p -DMEM_CHECK -DMANAGE_MEM
1688
1689./SGI/profile/filesel.o : include/jdir.hpp
1690./SGI/profile/filesel.o : include/scroller.hpp
1691./SGI/profile/filesel.o : include/input.hpp
1692./SGI/profile/filesel.o : include/timage.hpp
1693./SGI/profile/filesel.o : include/fonts.hpp
1694./SGI/profile/filesel.o : include/filter.hpp
1695./SGI/profile/filesel.o : include/mouse.hpp
1696./SGI/profile/filesel.o : include/macs.hpp
1697./SGI/profile/filesel.o : include/sprite.hpp
1698./SGI/profile/filesel.o : include/keys.hpp
1699./SGI/profile/filesel.o : include/event.hpp
1700./SGI/profile/filesel.o : include/jmalloc.hpp
1701./SGI/profile/filesel.o : include/specs.hpp
1702./SGI/profile/filesel.o : include/palette.hpp
1703./SGI/profile/filesel.o : include/linked.hpp
1704./SGI/profile/filesel.o : include/image.hpp
1705./SGI/profile/filesel.o : include/system.h
1706./SGI/profile/filesel.o : include/video.hpp
1707./SGI/profile/filesel.o : include/jwindow.hpp
1708./SGI/profile/filesel.o : include/filesel.hpp
1709./SGI/profile/tools.o : tools.c
1710        g++ -c -o ./SGI/profile/tools.o tools.c -Iinclude -O2 -g -p -DMEM_CHECK -DMANAGE_MEM
1711
1712./SGI/profile/tools.o : include/visobj.hpp
1713./SGI/profile/tools.o : include/scroller.hpp
1714./SGI/profile/tools.o : include/input.hpp
1715./SGI/profile/tools.o : include/timage.hpp
1716./SGI/profile/tools.o : include/fonts.hpp
1717./SGI/profile/tools.o : include/filter.hpp
1718./SGI/profile/tools.o : include/mouse.hpp
1719./SGI/profile/tools.o : include/macs.hpp
1720./SGI/profile/tools.o : include/sprite.hpp
1721./SGI/profile/tools.o : include/keys.hpp
1722./SGI/profile/tools.o : include/event.hpp
1723./SGI/profile/tools.o : include/jmalloc.hpp
1724./SGI/profile/tools.o : include/specs.hpp
1725./SGI/profile/tools.o : include/palette.hpp
1726./SGI/profile/tools.o : include/linked.hpp
1727./SGI/profile/tools.o : include/image.hpp
1728./SGI/profile/tools.o : include/system.h
1729./SGI/profile/tools.o : include/video.hpp
1730./SGI/profile/tools.o : include/jwindow.hpp
1731./SGI/profile/tools.o : include/tools.hpp
1732./SGI/profile/guistat.o : guistat.c
1733        g++ -c -o ./SGI/profile/guistat.o guistat.c -Iinclude -O2 -g -p -DMEM_CHECK -DMANAGE_MEM
1734
1735./SGI/profile/guistat.o : include/guistat.hpp
1736./SGI/profile/guistat.o : include/timing.hpp
1737./SGI/profile/guistat.o : include/timage.hpp
1738./SGI/profile/guistat.o : include/fonts.hpp
1739./SGI/profile/guistat.o : include/filter.hpp
1740./SGI/profile/guistat.o : include/mouse.hpp
1741./SGI/profile/guistat.o : include/macs.hpp
1742./SGI/profile/guistat.o : include/sprite.hpp
1743./SGI/profile/guistat.o : include/keys.hpp
1744./SGI/profile/guistat.o : include/event.hpp
1745./SGI/profile/guistat.o : include/jmalloc.hpp
1746./SGI/profile/guistat.o : include/specs.hpp
1747./SGI/profile/guistat.o : include/palette.hpp
1748./SGI/profile/guistat.o : include/linked.hpp
1749./SGI/profile/guistat.o : include/image.hpp
1750./SGI/profile/guistat.o : include/system.h
1751./SGI/profile/guistat.o : include/video.hpp
1752./SGI/profile/guistat.o : include/jwindow.hpp
1753./SGI/profile/guistat.o : include/visobj.hpp
1754./SGI/profile/guistat.o : include/status.hpp
1755
1756./SGI/profile/packet.a : $(SGI_packet_profile_o_files)
1757        ar ruvs ./SGI/profile/packet.a \
1758        ./SGI/profile/packet.o
1759
1760./SGI/profile/packet.o : packet.c
1761        g++ -c -o ./SGI/profile/packet.o packet.c -Iinclude -O2 -g -p -DMEM_CHECK -DMANAGE_MEM
1762
1763./SGI/profile/packet.o : include/jmalloc.hpp
1764./SGI/profile/packet.o : include/system.h
1765./SGI/profile/packet.o : include/macs.hpp
1766./SGI/profile/packet.o : include/packet.hpp
1767
1768./SGI/profile/image.a : $(SGI_image_profile_o_files)
1769        ar ruvs ./SGI/profile/image.a \
1770        ./SGI/profile/filter.o \
1771        ./SGI/profile/gifread.o \
1772        ./SGI/profile/globals.o \
1773        ./SGI/profile/image.o \
1774        ./SGI/profile/linked.o \
1775        ./SGI/profile/input.o \
1776        ./SGI/profile/mdlread.o \
1777        ./SGI/profile/palette.o \
1778        ./SGI/profile/ppmread.o \
1779        ./SGI/profile/include.o \
1780        ./SGI/profile/xwdread.o \
1781        ./SGI/profile/fonts.o \
1782        ./SGI/profile/decoder.o \
1783        ./SGI/profile/loader.o \
1784        ./SGI/profile/glread.o \
1785        ./SGI/profile/texture.o \
1786        ./SGI/profile/specs.o \
1787        ./SGI/profile/supmorph.o \
1788        ./SGI/profile/image24.o \
1789        ./SGI/profile/pcxread.o \
1790        ./SGI/profile/timage.o \
1791        ./SGI/profile/jmalloc.o \
1792        ./SGI/profile/jrand.o \
1793        ./SGI/profile/lbmread.o \
1794        ./SGI/profile/keys.o \
1795        ./SGI/profile/dprint.o \
1796        ./SGI/profile/status.o \
1797        ./SGI/profile/visobj.o
1798
1799./SGI/profile/filter.o : filter.c
1800        g++ -c -o ./SGI/profile/filter.o filter.c -Iinclude -O2 -g -p -DMEM_CHECK -DMANAGE_MEM
1801
1802./SGI/profile/filter.o : include/filter.hpp
1803./SGI/profile/filter.o : include/macs.hpp
1804./SGI/profile/filter.o : include/system.h
1805./SGI/profile/filter.o : include/jmalloc.hpp
1806./SGI/profile/filter.o : include/specs.hpp
1807./SGI/profile/filter.o : include/palette.hpp
1808./SGI/profile/filter.o : include/linked.hpp
1809./SGI/profile/filter.o : include/image.hpp
1810./SGI/profile/gifread.o : gifread.c
1811        g++ -c -o ./SGI/profile/gifread.o gifread.c -Iinclude -O2 -g -p -DMEM_CHECK -DMANAGE_MEM
1812
1813./SGI/profile/gifread.o : include/macs.hpp
1814./SGI/profile/gifread.o : include/dir.h
1815./SGI/profile/gifread.o : include/dos.h
1816./SGI/profile/gifread.o : include/std.h
1817./SGI/profile/gifread.o : include/gifdecod.hpp
1818./SGI/profile/gifread.o : include/video.hpp
1819./SGI/profile/gifread.o : include/system.h
1820./SGI/profile/gifread.o : include/jmalloc.hpp
1821./SGI/profile/gifread.o : include/specs.hpp
1822./SGI/profile/gifread.o : include/palette.hpp
1823./SGI/profile/gifread.o : include/linked.hpp
1824./SGI/profile/gifread.o : include/image.hpp
1825./SGI/profile/gifread.o : include/gifread.hpp
1826./SGI/profile/globals.o : globals.c
1827        g++ -c -o ./SGI/profile/globals.o globals.c -Iinclude -O2 -g -p -DMEM_CHECK -DMANAGE_MEM
1828
1829./SGI/profile/globals.o : globals.c
1830./SGI/profile/image.o : image.c
1831        g++ -c -o ./SGI/profile/image.o image.c -Iinclude -O2 -g -p -DMEM_CHECK -DMANAGE_MEM
1832
1833./SGI/profile/image.o : include/exitproc.hpp
1834./SGI/profile/image.o : include/dos.h
1835./SGI/profile/image.o : include/macs.hpp
1836./SGI/profile/image.o : include/jmalloc.hpp
1837./SGI/profile/image.o : include/specs.hpp
1838./SGI/profile/image.o : include/palette.hpp
1839./SGI/profile/image.o : include/image.hpp
1840./SGI/profile/image.o : include/linked.hpp
1841./SGI/profile/image.o : include/system.h
1842./SGI/profile/image.o : include/emm.hpp
1843./SGI/profile/linked.o : linked.c
1844        g++ -c -o ./SGI/profile/linked.o linked.c -Iinclude -O2 -g -p -DMEM_CHECK -DMANAGE_MEM
1845
1846./SGI/profile/linked.o : include/linked.hpp
1847./SGI/profile/input.o : input.c
1848        g++ -c -o ./SGI/profile/input.o input.c -Iinclude -O2 -g -p -DMEM_CHECK -DMANAGE_MEM
1849
1850./SGI/profile/input.o : include/timage.hpp
1851./SGI/profile/input.o : include/fonts.hpp
1852./SGI/profile/input.o : include/filter.hpp
1853./SGI/profile/input.o : include/mouse.hpp
1854./SGI/profile/input.o : include/macs.hpp
1855./SGI/profile/input.o : include/sprite.hpp
1856./SGI/profile/input.o : include/keys.hpp
1857./SGI/profile/input.o : include/event.hpp
1858./SGI/profile/input.o : include/jmalloc.hpp
1859./SGI/profile/input.o : include/specs.hpp
1860./SGI/profile/input.o : include/palette.hpp
1861./SGI/profile/input.o : include/linked.hpp
1862./SGI/profile/input.o : include/image.hpp
1863./SGI/profile/input.o : include/system.h
1864./SGI/profile/input.o : include/video.hpp
1865./SGI/profile/input.o : include/jwindow.hpp
1866./SGI/profile/input.o : include/input.hpp
1867./SGI/profile/mdlread.o : mdlread.c
1868        g++ -c -o ./SGI/profile/mdlread.o mdlread.c -Iinclude -O2 -g -p -DMEM_CHECK -DMANAGE_MEM
1869
1870./SGI/profile/mdlread.o : include/macs.hpp
1871./SGI/profile/mdlread.o : include/image.hpp
1872./SGI/profile/mdlread.o : include/system.h
1873./SGI/profile/mdlread.o : include/jmalloc.hpp
1874./SGI/profile/mdlread.o : include/specs.hpp
1875./SGI/profile/mdlread.o : include/linked.hpp
1876./SGI/profile/mdlread.o : include/palette.hpp
1877./SGI/profile/mdlread.o : include/mdlread.hpp
1878./SGI/profile/palette.o : palette.c
1879        g++ -c -o ./SGI/profile/palette.o palette.c -Iinclude -O2 -g -p -DMEM_CHECK -DMANAGE_MEM
1880
1881./SGI/profile/palette.o : include/filter.hpp
1882./SGI/profile/palette.o : include/video.hpp
1883./SGI/profile/palette.o : include/dos.h
1884./SGI/profile/palette.o : include/macs.hpp
1885./SGI/profile/palette.o : include/image.hpp
1886./SGI/profile/palette.o : include/system.h
1887./SGI/profile/palette.o : include/jmalloc.hpp
1888./SGI/profile/palette.o : include/specs.hpp
1889./SGI/profile/palette.o : include/linked.hpp
1890./SGI/profile/palette.o : include/palette.hpp
1891./SGI/profile/ppmread.o : ppmread.c
1892        g++ -c -o ./SGI/profile/ppmread.o ppmread.c -Iinclude -O2 -g -p -DMEM_CHECK -DMANAGE_MEM
1893
1894./SGI/profile/ppmread.o : include/ppmread.hpp
1895./SGI/profile/ppmread.o : include/macs.hpp
1896./SGI/profile/ppmread.o : include/system.h
1897./SGI/profile/ppmread.o : include/jmalloc.hpp
1898./SGI/profile/ppmread.o : include/specs.hpp
1899./SGI/profile/ppmread.o : include/palette.hpp
1900./SGI/profile/ppmread.o : include/linked.hpp
1901./SGI/profile/ppmread.o : include/image.hpp
1902./SGI/profile/include.o : include.c
1903        g++ -c -o ./SGI/profile/include.o include.c -Iinclude -O2 -g -p -DMEM_CHECK -DMANAGE_MEM
1904
1905./SGI/profile/include.o : include/system.h
1906./SGI/profile/include.o : include/jmalloc.hpp
1907./SGI/profile/include.o : include/specs.hpp
1908./SGI/profile/include.o : include/palette.hpp
1909./SGI/profile/include.o : include/linked.hpp
1910./SGI/profile/include.o : include/image.hpp
1911./SGI/profile/include.o : include/include.hpp
1912./SGI/profile/xwdread.o : xwdread.c
1913        g++ -c -o ./SGI/profile/xwdread.o xwdread.c -Iinclude -O2 -g -p -DMEM_CHECK -DMANAGE_MEM
1914
1915./SGI/profile/xwdread.o : include/image24.hpp
1916./SGI/profile/xwdread.o : include/main.hpp
1917./SGI/profile/xwdread.o : include/dos.h
1918./SGI/profile/xwdread.o : include/video.hpp
1919./SGI/profile/xwdread.o : include/mouse.hpp
1920./SGI/profile/xwdread.o : include/macs.hpp
1921./SGI/profile/xwdread.o : include/sprite.hpp
1922./SGI/profile/xwdread.o : include/keys.hpp
1923./SGI/profile/xwdread.o : include/event.hpp
1924./SGI/profile/xwdread.o : include/system.h
1925./SGI/profile/xwdread.o : include/jmalloc.hpp
1926./SGI/profile/xwdread.o : include/specs.hpp
1927./SGI/profile/xwdread.o : include/palette.hpp
1928./SGI/profile/xwdread.o : include/linked.hpp
1929./SGI/profile/xwdread.o : include/image.hpp
1930./SGI/profile/xwdread.o : include/filter.hpp
1931./SGI/profile/fonts.o : fonts.c
1932        g++ -c -o ./SGI/profile/fonts.o fonts.c -Iinclude -O2 -g -p -DMEM_CHECK -DMANAGE_MEM
1933
1934./SGI/profile/fonts.o : include/filter.hpp
1935./SGI/profile/fonts.o : include/macs.hpp
1936./SGI/profile/fonts.o : include/timage.hpp
1937./SGI/profile/fonts.o : include/system.h
1938./SGI/profile/fonts.o : include/jmalloc.hpp
1939./SGI/profile/fonts.o : include/specs.hpp
1940./SGI/profile/fonts.o : include/palette.hpp
1941./SGI/profile/fonts.o : include/linked.hpp
1942./SGI/profile/fonts.o : include/image.hpp
1943./SGI/profile/fonts.o : include/fonts.hpp
1944./SGI/profile/decoder.o : decoder.c
1945        g++ -c -o ./SGI/profile/decoder.o decoder.c -Iinclude -O2 -g -p -DMEM_CHECK -DMANAGE_MEM
1946
1947./SGI/profile/decoder.o : include/macs.hpp
1948./SGI/profile/decoder.o : include/system.h
1949./SGI/profile/decoder.o : include/jmalloc.hpp
1950./SGI/profile/decoder.o : include/specs.hpp
1951./SGI/profile/decoder.o : include/palette.hpp
1952./SGI/profile/decoder.o : include/linked.hpp
1953./SGI/profile/decoder.o : include/image.hpp
1954./SGI/profile/decoder.o : include/errs.h
1955./SGI/profile/loader.o : loader.c
1956        g++ -c -o ./SGI/profile/loader.o loader.c -Iinclude -O2 -g -p -DMEM_CHECK -DMANAGE_MEM
1957
1958./SGI/profile/loader.o : include/lbmread.hpp
1959./SGI/profile/loader.o : include/pcxread.hpp
1960./SGI/profile/loader.o : include/glread.hpp
1961./SGI/profile/loader.o : include/xwdread.hpp
1962./SGI/profile/loader.o : include/ppmread.hpp
1963./SGI/profile/loader.o : include/mdlread.hpp
1964./SGI/profile/loader.o : include/filter.hpp
1965./SGI/profile/loader.o : include/macs.hpp
1966./SGI/profile/loader.o : include/image24.hpp
1967./SGI/profile/loader.o : include/system.h
1968./SGI/profile/loader.o : include/jmalloc.hpp
1969./SGI/profile/loader.o : include/specs.hpp
1970./SGI/profile/loader.o : include/palette.hpp
1971./SGI/profile/loader.o : include/linked.hpp
1972./SGI/profile/loader.o : include/image.hpp
1973./SGI/profile/loader.o : include/loader.hpp
1974./SGI/profile/glread.o : glread.c
1975        g++ -c -o ./SGI/profile/glread.o glread.c -Iinclude -O2 -g -p -DMEM_CHECK -DMANAGE_MEM
1976
1977./SGI/profile/glread.o : include/video.hpp
1978./SGI/profile/glread.o : include/jmalloc.hpp
1979./SGI/profile/glread.o : include/specs.hpp
1980./SGI/profile/glread.o : include/palette.hpp
1981./SGI/profile/glread.o : include/linked.hpp
1982./SGI/profile/glread.o : include/image.hpp
1983./SGI/profile/glread.o : include/system.h
1984./SGI/profile/glread.o : include/macs.hpp
1985./SGI/profile/texture.o : texture.c
1986        g++ -c -o ./SGI/profile/texture.o texture.c -Iinclude -O2 -g -p -DMEM_CHECK -DMANAGE_MEM
1987
1988./SGI/profile/texture.o : include/mouse.hpp
1989./SGI/profile/texture.o : include/sprite.hpp
1990./SGI/profile/texture.o : include/keys.hpp
1991./SGI/profile/texture.o : include/event.hpp
1992./SGI/profile/texture.o : include/macs.hpp
1993./SGI/profile/texture.o : include/video.hpp
1994./SGI/profile/texture.o : include/system.h
1995./SGI/profile/texture.o : include/jmalloc.hpp
1996./SGI/profile/texture.o : include/specs.hpp
1997./SGI/profile/texture.o : include/palette.hpp
1998./SGI/profile/texture.o : include/linked.hpp
1999./SGI/profile/texture.o : include/image.hpp
2000./SGI/profile/specs.o : specs.c
2001        g++ -c -o ./SGI/profile/specs.o specs.c -Iinclude -O2 -g -p -DMEM_CHECK -DMANAGE_MEM
2002
2003./SGI/profile/specs.o : include/dprint.hpp
2004./SGI/profile/specs.o : include/system.h
2005./SGI/profile/specs.o : include/jmalloc.hpp
2006./SGI/profile/specs.o : include/specs.hpp
2007./SGI/profile/specs.o : include/palette.hpp
2008./SGI/profile/specs.o : include/linked.hpp
2009./SGI/profile/specs.o : include/image.hpp
2010./SGI/profile/supmorph.o : supmorph.c
2011        g++ -c -o ./SGI/profile/supmorph.o supmorph.c -Iinclude -O2 -g -p -DMEM_CHECK -DMANAGE_MEM
2012
2013./SGI/profile/supmorph.o : include/jrand.hpp
2014./SGI/profile/supmorph.o : include/video.hpp
2015./SGI/profile/supmorph.o : include/timing.hpp
2016./SGI/profile/supmorph.o : include/filter.hpp
2017./SGI/profile/supmorph.o : include/macs.hpp
2018./SGI/profile/supmorph.o : include/system.h
2019./SGI/profile/supmorph.o : include/specs.hpp
2020./SGI/profile/supmorph.o : include/palette.hpp
2021./SGI/profile/supmorph.o : include/linked.hpp
2022./SGI/profile/supmorph.o : include/image.hpp
2023./SGI/profile/supmorph.o : include/timage.hpp
2024./SGI/profile/supmorph.o : include/jmalloc.hpp
2025./SGI/profile/supmorph.o : include/supmorph.hpp
2026./SGI/profile/image24.o : image24.c
2027        g++ -c -o ./SGI/profile/image24.o image24.c -Iinclude -O2 -g -p -DMEM_CHECK -DMANAGE_MEM
2028
2029./SGI/profile/image24.o : include/image.hpp
2030./SGI/profile/image24.o : include/filter.hpp
2031./SGI/profile/image24.o : include/macs.hpp
2032./SGI/profile/image24.o : include/system.h
2033./SGI/profile/image24.o : include/jmalloc.hpp
2034./SGI/profile/image24.o : include/specs.hpp
2035./SGI/profile/image24.o : include/linked.hpp
2036./SGI/profile/image24.o : include/palette.hpp
2037./SGI/profile/image24.o : include/image24.hpp
2038./SGI/profile/pcxread.o : pcxread.c
2039        g++ -c -o ./SGI/profile/pcxread.o pcxread.c -Iinclude -O2 -g -p -DMEM_CHECK -DMANAGE_MEM
2040
2041./SGI/profile/pcxread.o : include/filter.hpp
2042./SGI/profile/pcxread.o : include/macs.hpp
2043./SGI/profile/pcxread.o : include/image24.hpp
2044./SGI/profile/pcxread.o : include/system.h
2045./SGI/profile/pcxread.o : include/jmalloc.hpp
2046./SGI/profile/pcxread.o : include/specs.hpp
2047./SGI/profile/pcxread.o : include/palette.hpp
2048./SGI/profile/pcxread.o : include/linked.hpp
2049./SGI/profile/pcxread.o : include/image.hpp
2050./SGI/profile/pcxread.o : include/pcxread.hpp
2051./SGI/profile/timage.o : timage.c
2052        g++ -c -o ./SGI/profile/timage.o timage.c -Iinclude -O2 -g -p -DMEM_CHECK -DMANAGE_MEM
2053
2054./SGI/profile/timage.o : include/filter.hpp
2055./SGI/profile/timage.o : include/macs.hpp
2056./SGI/profile/timage.o : include/system.h
2057./SGI/profile/timage.o : include/jmalloc.hpp
2058./SGI/profile/timage.o : include/specs.hpp
2059./SGI/profile/timage.o : include/palette.hpp
2060./SGI/profile/timage.o : include/linked.hpp
2061./SGI/profile/timage.o : include/image.hpp
2062./SGI/profile/timage.o : include/timage.hpp
2063./SGI/profile/jmalloc.o : jmalloc.c
2064        g++ -c -o ./SGI/profile/jmalloc.o jmalloc.c -Iinclude -O2 -g -p -DMEM_CHECK -DMANAGE_MEM
2065
2066./SGI/profile/jmalloc.o : include/jmalloc.hpp
2067./SGI/profile/jmalloc.o : include/system.h
2068./SGI/profile/jmalloc.o : include/macs.hpp
2069./SGI/profile/jmalloc.o : include/doscall.hpp
2070./SGI/profile/jrand.o : jrand.c
2071        g++ -c -o ./SGI/profile/jrand.o jrand.c -Iinclude -O2 -g -p -DMEM_CHECK -DMANAGE_MEM
2072
2073./SGI/profile/jrand.o : include/jrand.hpp
2074./SGI/profile/lbmread.o : lbmread.c
2075        g++ -c -o ./SGI/profile/lbmread.o lbmread.c -Iinclude -O2 -g -p -DMEM_CHECK -DMANAGE_MEM
2076
2077./SGI/profile/lbmread.o : include/system.h
2078./SGI/profile/lbmread.o : include/jmalloc.hpp
2079./SGI/profile/lbmread.o : include/specs.hpp
2080./SGI/profile/lbmread.o : include/palette.hpp
2081./SGI/profile/lbmread.o : include/linked.hpp
2082./SGI/profile/lbmread.o : include/image.hpp
2083./SGI/profile/lbmread.o : include/lbmread.hpp
2084./SGI/profile/keys.o : keys.c
2085        g++ -c -o ./SGI/profile/keys.o keys.c -Iinclude -O2 -g -p -DMEM_CHECK -DMANAGE_MEM
2086
2087./SGI/profile/keys.o : include/keys.hpp
2088./SGI/profile/dprint.o : dprint.c
2089        g++ -c -o ./SGI/profile/dprint.o dprint.c -Iinclude -O2 -g -p -DMEM_CHECK -DMANAGE_MEM
2090
2091./SGI/profile/dprint.o : include/system.h
2092./SGI/profile/dprint.o : include/macs.hpp
2093./SGI/profile/status.o : status.c
2094        g++ -c -o ./SGI/profile/status.o status.c -Iinclude -O2 -g -p -DMEM_CHECK -DMANAGE_MEM
2095
2096./SGI/profile/status.o : include/dprint.hpp
2097./SGI/profile/status.o : include/timage.hpp
2098./SGI/profile/status.o : include/fonts.hpp
2099./SGI/profile/status.o : include/filter.hpp
2100./SGI/profile/status.o : include/mouse.hpp
2101./SGI/profile/status.o : include/sprite.hpp
2102./SGI/profile/status.o : include/keys.hpp
2103./SGI/profile/status.o : include/event.hpp
2104./SGI/profile/status.o : include/jmalloc.hpp
2105./SGI/profile/status.o : include/specs.hpp
2106./SGI/profile/status.o : include/palette.hpp
2107./SGI/profile/status.o : include/linked.hpp
2108./SGI/profile/status.o : include/image.hpp
2109./SGI/profile/status.o : include/video.hpp
2110./SGI/profile/status.o : include/jwindow.hpp
2111./SGI/profile/status.o : include/visobj.hpp
2112./SGI/profile/status.o : include/status.hpp
2113./SGI/profile/status.o : include/system.h
2114./SGI/profile/status.o : include/macs.hpp
2115./SGI/profile/visobj.o : visobj.c
2116        g++ -c -o ./SGI/profile/visobj.o visobj.c -Iinclude -O2 -g -p -DMEM_CHECK -DMANAGE_MEM
2117
2118./SGI/profile/visobj.o : include/timage.hpp
2119./SGI/profile/visobj.o : include/fonts.hpp
2120./SGI/profile/visobj.o : include/filter.hpp
2121./SGI/profile/visobj.o : include/mouse.hpp
2122./SGI/profile/visobj.o : include/macs.hpp
2123./SGI/profile/visobj.o : include/sprite.hpp
2124./SGI/profile/visobj.o : include/keys.hpp
2125./SGI/profile/visobj.o : include/event.hpp
2126./SGI/profile/visobj.o : include/jmalloc.hpp
2127./SGI/profile/visobj.o : include/specs.hpp
2128./SGI/profile/visobj.o : include/palette.hpp
2129./SGI/profile/visobj.o : include/linked.hpp
2130./SGI/profile/visobj.o : include/image.hpp
2131./SGI/profile/visobj.o : include/system.h
2132./SGI/profile/visobj.o : include/video.hpp
2133./SGI/profile/visobj.o : include/jwindow.hpp
2134./SGI/profile/visobj.o : include/visobj.hpp
2135
Note: See TracBrowser for help on using the repository browser.