1CC=@CC@
2X_CFLAGS=@X_CFLAGS@
3LIBXPM_CFLAGS=@LIBXPM_CFLAGS@
4LIBPNG_CFLAGS=@LIBPNG_CFLAGS@
5ZLIB_CFLAGS=@ZLIB_CFLAGS@
6LIBJPEG_CFLAGS=@LIBJPEG_CFLAGS@
7LIBTIFF_CFLAGS=@LIBTIFF_CFLAGS@
8
9WFLAGS=	-Wall			\
10	-Wextra			\
11	-Winit-self		\
12	-pedantic		\
13	-Wpointer-arith		\
14	-Wno-format-y2k		\
15	-Wstrict-prototypes	\
16	-Wmissing-declarations	\
17	-Wmissing-prototypes	\
18	-Wnested-externs	\
19	-Wuninitialized		\
20	-Wundef			\
21	-Wwrite-strings		\
22	-Wold-style-definition	\
23	-Wno-missing-field-initializers	\
24	-Wredundant-decls	\
25	-Wno-unused-parameter	\
26	-Wno-sign-compare
27
28INCLUDES=			\
29	$(LIBXPM_CFLAGS)	\
30	$(LIBPNG_CFLAGS)	\
31	$(ZLIB_CFLAGS)		\
32	$(LIBJPEG_CFLAGS)	\
33	$(LIBTIFF_CFLAGS)	\
34	-I../include		\
35	-I../utilPs		\
36	-I. -I../appUtil
37
38CFLAGS=	\
39	@CFLAGS@		\
40	$(X_CFLAGS)		\
41	$(INCLUDES)
42
43#CFLAGS= -g -O2 $(WFLAGS) $(X_CFLAGS) $(INCLUDES)
44
45# 59!!obs
46OBS	=	\
47		bmxwd.o\
48		bmxpm.o\
49		bmxbm.o\
50		bmWmfIo.o\
51		bmwmf.o\
52		bmWebSafe.o\
53		bmwbmp.o\
54		bmtogray.o\
55		bmtiff.o\
56		bmthreshold.o\
57		bmTextureMap.o\
58		bmsqueeze.o\
59		bmselect.o\
60		bmSegments.o\
61		bmrtf.o\
62		bmreduce.o\
63		bmputrow.o\
64		bmps.o\
65		bmpng.o\
66		bmplanar.o\
67		bmpgm.o\
68		bmpalette.o\
69		bmmorpho.o\
70		bmmapcolors.o\
71		bmMakeImage.o\
72		bmMacPictRaster.o\
73		bmJpegToPs.o\
74		bmjpeg.o\
75		bmio.o\
76		bminvert.o\
77		bmico.o\
78		bmGrayHisto.o\
79		bmgif.o\
80		bmgetrow.o\
81		bmgamma.o\
82		bmformats.o\
83		bmForAll.o\
84		bmflip.o\
85		bmFindLineSegments.o\
86		bmfilter.o\
87		bmFillJob.o\
88		bmeps.o\
89		bmEmfIo.o\
90		bm_egif_lib.o\
91		bmDrawImage.o\
92		bmdraw.o\
93		bm_dgif_lib.o\
94		bmCountLine.o\
95		bmconvert.o\
96		bmcolor.o\
97		bmClusterSegments.o\
98		bmbmp.o\
99		bmBitmapPrinter.o\
100		bmBitmapImage.o\
101		bmaverage.o\
102		bmalpha.o\
103		bmadm.o
104
105../lib/bitmap.a:	$(OBS)
106	ar ruv $@ $(OBS) && @RANLIB@ $@
107
108#
109#  This is cyclic, but at least it documents what extra autoconf configuration
110#  is used in this directory:
111#
112ACLOCAL=			\
113	../configure/xpm.m4	\
114	../configure/png.m4	\
115	../configure/zlib.m4	\
116	../configure/jpeg.m4	\
117	../configure/tiff.m4
118
119aclocal.m4:	$(ACLOCAL)
120	cat $(ACLOCAL) > $@
121
122duplicates:
123	nm *.o | grep -w [Tt] | \
124	while read addr t name; do echo $$name; done | sort | uniq -c | sort -n
125
126includes:
127	includes.sh bitmapConfig.h $(INCLUDES)
128
129# deps -I. -I../include -I../appUtil -I../utilPs -I/home/gaai/mark/LinuxProgrammas/zlib -I/home/gaai/mark/LinuxProgrammas/jpeg -I/usr/local/include -I/home/gaai/mark/LinuxProgrammas/libpng
130######################################## !! sh
131
132bmBitmapImage.o: \
133    bmBitmapImage.c \
134    bitmapConfig.h \
135    bitmap.h \
136    ../appUtil/utilColor.h \
137    ../appUtil/utilPalette.h \
138    ../appUtil/utilColor.h \
139    ../appUtil/utilMemoryBuffer.h \
140    ../appUtil/geo2DInteger.h \
141    ../include/appDebugon.h \
142    ../include/appDebug.h
143
144bmBitmapPrinter.o: \
145    bmBitmapPrinter.c \
146    bitmapConfig.h \
147    ../appUtil/sioHex.h \
148    ../appUtil/sioGeneral.h \
149    ../appUtil/sioBase85.h \
150    ../appUtil/sioFlate.h \
151    bmBitmapPrinter.h \
152    bitmap.h \
153    ../appUtil/utilColor.h \
154    ../appUtil/utilPalette.h \
155    ../appUtil/utilColor.h \
156    ../appUtil/utilMemoryBuffer.h \
157    ../appUtil/geo2DInteger.h \
158    bmio.h \
159    ../appUtil/sioGeneral.h \
160    ../include/appDebugon.h \
161    ../include/appDebug.h
162
163bmClusterSegments.o: \
164    bmClusterSegments.c \
165    ../include/appDebugon.h \
166    ../include/appDebug.h
167
168bmCountLine.o: \
169    bmCountLine.c \
170    bitmapConfig.h \
171    bmintern.h \
172    bitmap.h \
173    ../appUtil/utilColor.h \
174    ../appUtil/utilPalette.h \
175    ../appUtil/utilColor.h \
176    ../appUtil/utilMemoryBuffer.h \
177    ../appUtil/geo2DInteger.h \
178    ../include/appDebugon.h \
179    ../include/appDebug.h
180
181bmDrawImage.o: \
182    bmDrawImage.c \
183    bitmapConfig.h \
184    bmintern.h \
185    bitmap.h \
186    ../appUtil/utilColor.h \
187    ../appUtil/utilPalette.h \
188    ../appUtil/utilColor.h \
189    ../appUtil/utilMemoryBuffer.h \
190    ../appUtil/geo2DInteger.h \
191    ../include/appDebugon.h \
192    ../include/appDebug.h
193
194bmEmfIo.o: \
195    bmEmfIo.c \
196    bmEmfIo.h \
197    bmEmf.h \
198    ../appUtil/geo2DInteger.h \
199    ../appUtil/utilColor.h \
200    ../appUtil/sioGeneral.h \
201    ../appUtil/geoAffineTransform.h \
202    ../appUtil/sioEndian.h \
203    ../appUtil/sioGeneral.h \
204    ../include/appDebugon.h \
205    ../include/appDebug.h
206
207bmFillJob.o: \
208    bmFillJob.c \
209    bitmapConfig.h \
210    bmintern.h \
211    bitmap.h \
212    ../appUtil/utilColor.h \
213    ../appUtil/utilPalette.h \
214    ../appUtil/utilColor.h \
215    ../appUtil/utilMemoryBuffer.h \
216    ../appUtil/geo2DInteger.h \
217    bmgetrow.h \
218    bmputrow.h \
219    bmRender.h \
220    bmcolor.h \
221    ../include/appDebugon.h \
222    ../include/appDebug.h
223
224bmFindLineSegments.o: \
225    bmFindLineSegments.c \
226    bitmapConfig.h \
227    bmintern.h \
228    bitmap.h \
229    ../appUtil/utilColor.h \
230    ../appUtil/utilPalette.h \
231    ../appUtil/utilColor.h \
232    ../appUtil/utilMemoryBuffer.h \
233    ../appUtil/geo2DInteger.h \
234    ../appUtil/geoAffineTransform.h \
235    ../include/appDebugon.h \
236    ../include/appDebug.h
237
238bmForAll.o: \
239    bmForAll.c \
240    bitmapConfig.h \
241    bmintern.h \
242    bitmap.h \
243    ../appUtil/utilColor.h \
244    ../appUtil/utilPalette.h \
245    ../appUtil/utilColor.h \
246    ../appUtil/utilMemoryBuffer.h \
247    ../appUtil/geo2DInteger.h \
248    ../include/appDebugon.h \
249    ../include/appDebug.h
250
251bmGrayHisto.o: \
252    bmGrayHisto.c \
253    bitmapConfig.h \
254    bmGrayHisto.h \
255    ../include/appDebugon.h \
256    ../include/appDebug.h
257
258bmJpegToPs.o: \
259    bmJpegToPs.c \
260    bitmapConfig.h \
261    ../appUtil/sioGeneral.h \
262    ../appUtil/sioBase85.h \
263    ../appUtil/sioGeneral.h \
264    ../appUtil/sioEndian.h \
265    bmio.h \
266    bitmap.h \
267    ../appUtil/utilColor.h \
268    ../appUtil/utilPalette.h \
269    ../appUtil/utilColor.h \
270    ../appUtil/utilMemoryBuffer.h \
271    ../appUtil/geo2DInteger.h \
272    ../include/appDebugon.h \
273    ../include/appDebug.h
274
275bmMacPictRaster.o: \
276    bmMacPictRaster.c \
277    bitmapConfig.h \
278    ../appUtil/sioEndian.h \
279    ../appUtil/sioGeneral.h \
280    bmio.h \
281    bitmap.h \
282    ../appUtil/utilColor.h \
283    ../appUtil/utilPalette.h \
284    ../appUtil/utilColor.h \
285    ../appUtil/utilMemoryBuffer.h \
286    ../appUtil/geo2DInteger.h \
287    ../appUtil/sioGeneral.h \
288    ../include/appDebugon.h \
289    ../include/appDebug.h
290
291bmMakeImage.o: \
292    bmMakeImage.c \
293    bitmapConfig.h \
294    bmintern.h \
295    bitmap.h \
296    ../appUtil/utilColor.h \
297    ../appUtil/utilPalette.h \
298    ../appUtil/utilColor.h \
299    ../appUtil/utilMemoryBuffer.h \
300    ../appUtil/geo2DInteger.h \
301    ../include/appDebugon.h \
302    ../include/appDebug.h
303
304bmSegments.o: \
305    bmSegments.c \
306    bitmapConfig.h \
307    bmSegments.h \
308    bitmap.h \
309    ../appUtil/utilColor.h \
310    ../appUtil/utilPalette.h \
311    ../appUtil/utilColor.h \
312    ../appUtil/utilMemoryBuffer.h \
313    ../appUtil/geo2DInteger.h \
314    bmintern.h \
315    ../include/appDebugon.h \
316    ../include/appDebug.h
317
318bmTextureMap.o: \
319    bmTextureMap.c \
320    bitmapConfig.h \
321    bmintern.h \
322    bitmap.h \
323    ../appUtil/utilColor.h \
324    ../appUtil/utilPalette.h \
325    ../appUtil/utilColor.h \
326    ../appUtil/utilMemoryBuffer.h \
327    ../appUtil/geo2DInteger.h \
328    bmgetrow.h \
329    bmputrow.h \
330    bmRender.h \
331    bmcolor.h \
332    ../include/appDebugon.h \
333    ../include/appDebug.h
334
335bmWebSafe.o: \
336    bmWebSafe.c \
337    bitmapConfig.h \
338    bmRender.h \
339    bitmap.h \
340    ../appUtil/utilColor.h \
341    ../appUtil/utilPalette.h \
342    ../appUtil/utilColor.h \
343    ../appUtil/utilMemoryBuffer.h \
344    ../appUtil/geo2DInteger.h \
345    bmcolor.h \
346    ../include/appDebugon.h \
347    ../include/appDebug.h
348
349bmWmfIo.o: \
350    bmWmfIo.c \
351    bmWmfIo.h \
352    bmWmf.h \
353    bmcolor.h \
354    ../appUtil/utilColor.h \
355    ../appUtil/geo2DInteger.h \
356    ../appUtil/sioGeneral.h \
357    ../appUtil/sioEndian.h \
358    ../appUtil/sioGeneral.h
359
360bm_dgif_lib.o: \
361    bm_dgif_lib.c \
362    bm_gif_lib.h \
363    ../appUtil/sioGeneral.h \
364    bmcolor.h \
365    ../appUtil/utilColor.h \
366    ../appUtil/sioBlocked.h \
367    ../appUtil/sioGeneral.h \
368    ../appUtil/sioLzw.h \
369    ../appUtil/sioEndian.h \
370    ../include/appDebugon.h \
371    ../include/appDebug.h
372
373bm_egif_lib.o: \
374    bm_egif_lib.c \
375    bm_gif_lib.h \
376    ../appUtil/sioGeneral.h \
377    bmcolor.h \
378    ../appUtil/utilColor.h \
379    ../include/appDebugon.h \
380    ../include/appDebug.h \
381    ../appUtil/sioBlocked.h \
382    ../appUtil/sioGeneral.h \
383    ../appUtil/sioLzw.h \
384    ../appUtil/sioEndian.h
385
386bmadm.o: \
387    bmadm.c \
388    bitmapConfig.h \
389    bmintern.h \
390    bitmap.h \
391    ../appUtil/utilColor.h \
392    ../appUtil/utilPalette.h \
393    ../appUtil/utilColor.h \
394    ../appUtil/utilMemoryBuffer.h \
395    ../appUtil/geo2DInteger.h \
396    ../include/appDebugon.h \
397    ../include/appDebug.h \
398    ../appUtil/geoUnits.h
399
400bmalpha.o: \
401    bmalpha.c \
402    bitmapConfig.h \
403    bmintern.h \
404    bitmap.h \
405    ../appUtil/utilColor.h \
406    ../appUtil/utilPalette.h \
407    ../appUtil/utilColor.h \
408    ../appUtil/utilMemoryBuffer.h \
409    ../appUtil/geo2DInteger.h \
410    ../include/appDebugon.h \
411    ../include/appDebug.h
412
413bmaverage.o: \
414    bmaverage.c \
415    bitmapConfig.h \
416    bitmap.h \
417    ../appUtil/utilColor.h \
418    ../appUtil/utilPalette.h \
419    ../appUtil/utilColor.h \
420    ../appUtil/utilMemoryBuffer.h \
421    ../appUtil/geo2DInteger.h \
422    ../include/appDebugon.h \
423    ../include/appDebug.h
424
425bmbmp.o: \
426    bmbmp.c \
427    bitmapConfig.h \
428    bmintern.h \
429    bitmap.h \
430    ../appUtil/utilColor.h \
431    ../appUtil/utilPalette.h \
432    ../appUtil/utilColor.h \
433    ../appUtil/utilMemoryBuffer.h \
434    ../appUtil/geo2DInteger.h \
435    ../appUtil/sioEndian.h \
436    ../appUtil/sioGeneral.h \
437    ../appUtil/sioFileio.h \
438    ../appUtil/utilMemoryBuffer.h \
439    ../appUtil/sioMemory.h \
440    ../appUtil/geoUnits.h \
441    bmbmp.h \
442    ../appUtil/sioGeneral.h \
443    bmio.h \
444    ../include/appDebugon.h \
445    ../include/appDebug.h
446
447bmcolor.o: \
448    bmcolor.c \
449    bitmapConfig.h \
450    bmcolor.h \
451    ../appUtil/utilColor.h \
452    ../include/appDebugon.h \
453    ../include/appDebug.h
454
455bmconvert.o: \
456    bmconvert.c \
457    bitmapConfig.h \
458    bmintern.h \
459    bitmap.h \
460    ../appUtil/utilColor.h \
461    ../appUtil/utilPalette.h \
462    ../appUtil/utilColor.h \
463    ../appUtil/utilMemoryBuffer.h \
464    ../appUtil/geo2DInteger.h \
465    bmgetrow.h \
466    bmputrow.h \
467    bmRender.h \
468    bmcolor.h \
469    ../include/appDebugon.h \
470    ../include/appDebug.h
471
472bmdraw.o: \
473    bmdraw.c \
474    bitmapConfig.h \
475    bmintern.h \
476    bitmap.h \
477    ../appUtil/utilColor.h \
478    ../appUtil/utilPalette.h \
479    ../appUtil/utilColor.h \
480    ../appUtil/utilMemoryBuffer.h \
481    ../appUtil/geo2DInteger.h \
482    ../include/appDebugon.h \
483    ../include/appDebug.h
484
485bmeps.o: \
486    bmeps.c \
487    bitmapConfig.h \
488    ../appUtil/sioFileio.h \
489    ../appUtil/utilMemoryBuffer.h \
490    ../appUtil/sioGeneral.h \
491    bmintern.h \
492    bitmap.h \
493    ../appUtil/utilColor.h \
494    ../appUtil/utilPalette.h \
495    ../appUtil/utilColor.h \
496    ../appUtil/utilMemoryBuffer.h \
497    ../appUtil/geo2DInteger.h \
498    bmBitmapPrinter.h \
499    bmio.h \
500    ../appUtil/sioGeneral.h \
501    ../utilPs/psPrint.h \
502    ../appUtil/utilDocumentGeometry.h \
503    ../appUtil/utilPropMask.h \
504    ../appUtil/geo2DInteger.h \
505    ../utilPs/psFace.h \
506    ../utilPs/psFontInfo.h \
507    ../appUtil/utilIndexSet.h \
508    ../appUtil/utilIndexMapping.h \
509    ../utilPs/textAttribute.h \
510    ../appUtil/utilPropMask.h \
511    ../appUtil/geoAffineTransform.h \
512    ../utilPs/psNup.h \
513    ../utilPs/psPostScriptFontList.h \
514    ../utilPs/psFontFamily.h \
515    ../appUtil/utilMemoryBufferPrintf.h \
516    ../include/appDebugon.h \
517    ../include/appDebug.h \
518    ../appUtil/sioPipe.h
519
520bmfilter.o: \
521    bmfilter.c \
522    bitmapConfig.h \
523    bmintern.h \
524    bitmap.h \
525    ../appUtil/utilColor.h \
526    ../appUtil/utilPalette.h \
527    ../appUtil/utilColor.h \
528    ../appUtil/utilMemoryBuffer.h \
529    ../appUtil/geo2DInteger.h \
530    bmgetrow.h \
531    bmputrow.h \
532    bmRender.h \
533    bmcolor.h \
534    ../include/appDebugon.h \
535    ../include/appDebug.h
536
537bmflip.o: \
538    bmflip.c \
539    bitmapConfig.h \
540    ../appUtil/geoAffineTransform.h \
541    ../appUtil/geo2DInteger.h \
542    bmintern.h \
543    bitmap.h \
544    ../appUtil/utilColor.h \
545    ../appUtil/utilPalette.h \
546    ../appUtil/utilColor.h \
547    ../appUtil/utilMemoryBuffer.h \
548    ../include/appDebugon.h \
549    ../include/appDebug.h
550
551bmformats.o: \
552    bmformats.c \
553    bitmapConfig.h \
554    bmintern.h \
555    bitmap.h \
556    ../appUtil/utilColor.h \
557    ../appUtil/utilPalette.h \
558    ../appUtil/utilColor.h \
559    ../appUtil/utilMemoryBuffer.h \
560    ../appUtil/geo2DInteger.h \
561    ../appUtil/appSystem.h \
562    ../include/appDebugon.h \
563    ../include/appDebug.h
564
565bmgamma.o: \
566    bmgamma.c \
567    bitmapConfig.h \
568    bmintern.h \
569    bitmap.h \
570    ../appUtil/utilColor.h \
571    ../appUtil/utilPalette.h \
572    ../appUtil/utilColor.h \
573    ../appUtil/utilMemoryBuffer.h \
574    ../appUtil/geo2DInteger.h \
575    ../include/appDebugon.h \
576    ../include/appDebug.h
577
578bmgetrow.o: \
579    bmgetrow.c \
580    bitmapConfig.h \
581    bmintern.h \
582    bitmap.h \
583    ../appUtil/utilColor.h \
584    ../appUtil/utilPalette.h \
585    ../appUtil/utilColor.h \
586    ../appUtil/utilMemoryBuffer.h \
587    ../appUtil/geo2DInteger.h \
588    bmgetrow.h \
589    ../include/appDebugon.h \
590    ../include/appDebug.h
591
592bmgif.o: \
593    bmgif.c \
594    bitmapConfig.h \
595    ../appUtil/sioFileio.h \
596    ../appUtil/utilMemoryBuffer.h \
597    ../appUtil/sioGeneral.h \
598    bmintern.h \
599    bitmap.h \
600    ../appUtil/utilColor.h \
601    ../appUtil/utilPalette.h \
602    ../appUtil/utilColor.h \
603    ../appUtil/utilMemoryBuffer.h \
604    ../appUtil/geo2DInteger.h \
605    bmio.h \
606    ../appUtil/sioGeneral.h \
607    ../include/appDebugon.h \
608    ../include/appDebug.h \
609    bm_gif_lib.h \
610    bmcolor.h
611
612bmico.o: \
613    bmico.c \
614    bitmapConfig.h \
615    bmintern.h \
616    bitmap.h \
617    ../appUtil/utilColor.h \
618    ../appUtil/utilPalette.h \
619    ../appUtil/utilColor.h \
620    ../appUtil/utilMemoryBuffer.h \
621    ../appUtil/geo2DInteger.h \
622    ../appUtil/sioEndian.h \
623    ../appUtil/sioGeneral.h \
624    ../appUtil/sioFileio.h \
625    ../appUtil/utilMemoryBuffer.h \
626    bmbmp.h \
627    ../appUtil/sioGeneral.h \
628    ../include/appDebugon.h \
629    ../include/appDebug.h
630
631bminvert.o: \
632    bminvert.c \
633    bitmapConfig.h \
634    bmintern.h \
635    bitmap.h \
636    ../appUtil/utilColor.h \
637    ../appUtil/utilPalette.h \
638    ../appUtil/utilColor.h \
639    ../appUtil/utilMemoryBuffer.h \
640    ../appUtil/geo2DInteger.h \
641    ../include/appDebugon.h \
642    ../include/appDebug.h
643
644bmio.o: \
645    bmio.c \
646    bitmapConfig.h \
647    bitmap.h \
648    ../appUtil/utilColor.h \
649    ../appUtil/utilPalette.h \
650    ../appUtil/utilColor.h \
651    ../appUtil/utilMemoryBuffer.h \
652    ../appUtil/geo2DInteger.h \
653    ../include/appDebugon.h \
654    ../include/appDebug.h \
655    ../appUtil/appSystem.h
656
657bmjpeg.o: \
658    bmjpeg.c \
659    bitmapConfig.h \
660    ../appUtil/sioFileio.h \
661    ../appUtil/utilMemoryBuffer.h \
662    ../appUtil/sioGeneral.h \
663    bmintern.h \
664    bitmap.h \
665    ../appUtil/utilColor.h \
666    ../appUtil/utilPalette.h \
667    ../appUtil/utilColor.h \
668    ../appUtil/utilMemoryBuffer.h \
669    ../appUtil/geo2DInteger.h \
670    bmio.h \
671    ../appUtil/sioGeneral.h \
672    ../include/appDebugon.h \
673    ../include/appDebug.h
674
675bmmapcolors.o: \
676    bmmapcolors.c \
677    bitmapConfig.h \
678    bmintern.h \
679    bitmap.h \
680    ../appUtil/utilColor.h \
681    ../appUtil/utilPalette.h \
682    ../appUtil/utilColor.h \
683    ../appUtil/utilMemoryBuffer.h \
684    ../appUtil/geo2DInteger.h \
685    ../include/appDebugon.h \
686    ../include/appDebug.h
687
688bmmorpho.o: \
689    bmmorpho.c \
690    bitmapConfig.h \
691    bmintern.h \
692    bitmap.h \
693    ../appUtil/utilColor.h \
694    ../appUtil/utilPalette.h \
695    ../appUtil/utilColor.h \
696    ../appUtil/utilMemoryBuffer.h \
697    ../appUtil/geo2DInteger.h \
698    ../include/appDebugon.h \
699    ../include/appDebug.h
700
701bmpalette.o: \
702    bmpalette.c \
703    bitmapConfig.h \
704    bmintern.h \
705    bitmap.h \
706    ../appUtil/utilColor.h \
707    ../appUtil/utilPalette.h \
708    ../appUtil/utilColor.h \
709    ../appUtil/utilMemoryBuffer.h \
710    ../appUtil/geo2DInteger.h \
711    ../include/appDebugon.h \
712    ../include/appDebug.h
713
714bmpgm.o: \
715    bmpgm.c \
716    bitmapConfig.h \
717    bmintern.h \
718    bitmap.h \
719    ../appUtil/utilColor.h \
720    ../appUtil/utilPalette.h \
721    ../appUtil/utilColor.h \
722    ../appUtil/utilMemoryBuffer.h \
723    ../appUtil/geo2DInteger.h \
724    ../include/appDebugon.h \
725    ../include/appDebug.h \
726    ../appUtil/sioFileio.h \
727    ../appUtil/utilMemoryBuffer.h \
728    ../appUtil/sioGeneral.h
729
730bmplanar.o: \
731    bmplanar.c \
732    bitmapConfig.h \
733    bmintern.h \
734    bitmap.h \
735    ../appUtil/utilColor.h \
736    ../appUtil/utilPalette.h \
737    ../appUtil/utilColor.h \
738    ../appUtil/utilMemoryBuffer.h \
739    ../appUtil/geo2DInteger.h \
740    ../include/appDebugon.h \
741    ../include/appDebug.h
742
743bmpng.o: \
744    bmpng.c \
745    bitmapConfig.h \
746    bmintern.h \
747    bitmap.h \
748    ../appUtil/utilColor.h \
749    ../appUtil/utilPalette.h \
750    ../appUtil/utilColor.h \
751    ../appUtil/utilMemoryBuffer.h \
752    ../appUtil/geo2DInteger.h \
753    bmio.h \
754    ../appUtil/sioGeneral.h \
755    ../include/appDebugon.h \
756    ../include/appDebug.h \
757    ../appUtil/sioFileio.h \
758    ../appUtil/utilMemoryBuffer.h \
759    ../appUtil/sioGeneral.h \
760    ../appUtil/utilEndian.h \
761    ../appUtil/geoUnits.h
762
763bmps.o: \
764    bmps.c \
765    bitmapConfig.h \
766    bmBitmapPrinter.h \
767    bitmap.h \
768    ../appUtil/utilColor.h \
769    ../appUtil/utilPalette.h \
770    ../appUtil/utilColor.h \
771    ../appUtil/utilMemoryBuffer.h \
772    ../appUtil/geo2DInteger.h \
773    bmio.h \
774    ../appUtil/sioGeneral.h \
775    ../include/appDebugon.h \
776    ../include/appDebug.h
777
778bmputrow.o: \
779    bmputrow.c \
780    bitmapConfig.h \
781    bmintern.h \
782    bitmap.h \
783    ../appUtil/utilColor.h \
784    ../appUtil/utilPalette.h \
785    ../appUtil/utilColor.h \
786    ../appUtil/utilMemoryBuffer.h \
787    ../appUtil/geo2DInteger.h \
788    bmputrow.h \
789    bmRender.h \
790    bmcolor.h \
791    bmgetrow.h \
792    ../include/appDebugon.h \
793    ../include/appDebug.h
794
795bmreduce.o: \
796    bmreduce.c \
797    bitmapConfig.h \
798    bmRender.h \
799    bitmap.h \
800    ../appUtil/utilColor.h \
801    ../appUtil/utilPalette.h \
802    ../appUtil/utilColor.h \
803    ../appUtil/utilMemoryBuffer.h \
804    ../appUtil/geo2DInteger.h \
805    bmcolor.h \
806    ../include/appDebugon.h \
807    ../include/appDebug.h
808
809bmrtf.o: \
810    bmrtf.c \
811    bitmapConfig.h \
812    bmintern.h \
813    bitmap.h \
814    ../appUtil/utilColor.h \
815    ../appUtil/utilPalette.h \
816    ../appUtil/utilColor.h \
817    ../appUtil/utilMemoryBuffer.h \
818    ../appUtil/geo2DInteger.h \
819    bmio.h \
820    ../appUtil/sioGeneral.h \
821    ../include/appDebugon.h \
822    ../include/appDebug.h \
823    ../appUtil/sioFileio.h \
824    ../appUtil/utilMemoryBuffer.h \
825    ../appUtil/sioGeneral.h \
826    ../appUtil/sioHex.h \
827    ../appUtil/geoUnits.h
828
829bmselect.o: \
830    bmselect.c \
831    bitmapConfig.h \
832    bitmap.h \
833    ../appUtil/utilColor.h \
834    ../appUtil/utilPalette.h \
835    ../appUtil/utilColor.h \
836    ../appUtil/utilMemoryBuffer.h \
837    ../appUtil/geo2DInteger.h \
838    ../include/appDebugon.h \
839    ../include/appDebug.h
840
841bmsqueeze.o: \
842    bmsqueeze.c \
843    bitmapConfig.h \
844    bmintern.h \
845    bitmap.h \
846    ../appUtil/utilColor.h \
847    ../appUtil/utilPalette.h \
848    ../appUtil/utilColor.h \
849    ../appUtil/utilMemoryBuffer.h \
850    ../appUtil/geo2DInteger.h \
851    ../include/appDebugon.h \
852    ../include/appDebug.h
853
854bmthreshold.o: \
855    bmthreshold.c \
856    bitmapConfig.h \
857    bmGrayHisto.h \
858    bmRender.h \
859    bitmap.h \
860    ../appUtil/utilColor.h \
861    ../appUtil/utilPalette.h \
862    ../appUtil/utilColor.h \
863    ../appUtil/utilMemoryBuffer.h \
864    ../appUtil/geo2DInteger.h \
865    bmcolor.h \
866    ../include/appDebugon.h \
867    ../include/appDebug.h
868
869bmtiff.o: \
870    bmtiff.c \
871    bitmapConfig.h \
872    bmintern.h \
873    bitmap.h \
874    ../appUtil/utilColor.h \
875    ../appUtil/utilPalette.h \
876    ../appUtil/utilColor.h \
877    ../appUtil/utilMemoryBuffer.h \
878    ../appUtil/geo2DInteger.h \
879    ../include/appDebugon.h \
880    ../include/appDebug.h
881
882bmtogray.o: \
883    bmtogray.c \
884    bitmapConfig.h \
885    bmRender.h \
886    bitmap.h \
887    ../appUtil/utilColor.h \
888    ../appUtil/utilPalette.h \
889    ../appUtil/utilColor.h \
890    ../appUtil/utilMemoryBuffer.h \
891    ../appUtil/geo2DInteger.h \
892    bmcolor.h \
893    ../include/appDebugon.h \
894    ../include/appDebug.h
895
896bmwbmp.o: \
897    bmwbmp.c \
898    bitmapConfig.h \
899    bmintern.h \
900    bitmap.h \
901    ../appUtil/utilColor.h \
902    ../appUtil/utilPalette.h \
903    ../appUtil/utilColor.h \
904    ../appUtil/utilMemoryBuffer.h \
905    ../appUtil/geo2DInteger.h \
906    ../appUtil/sioFileio.h \
907    ../appUtil/utilMemoryBuffer.h \
908    ../appUtil/sioGeneral.h \
909    ../include/appDebugon.h \
910    ../include/appDebug.h
911
912bmwmf.o: \
913    bmwmf.c \
914    bitmapConfig.h \
915    bmintern.h \
916    bitmap.h \
917    ../appUtil/utilColor.h \
918    ../appUtil/utilPalette.h \
919    ../appUtil/utilColor.h \
920    ../appUtil/utilMemoryBuffer.h \
921    ../appUtil/geo2DInteger.h \
922    bmio.h \
923    ../appUtil/sioGeneral.h \
924    ../include/appDebugon.h \
925    ../include/appDebug.h \
926    ../appUtil/sioFileio.h \
927    ../appUtil/utilMemoryBuffer.h \
928    ../appUtil/sioGeneral.h \
929    ../appUtil/sioEndian.h \
930    bmbmp.h \
931    bmWmf.h \
932    bmcolor.h
933
934bmxbm.o: \
935    bmxbm.c \
936    bitmapConfig.h \
937    bmintern.h \
938    bitmap.h \
939    ../appUtil/utilColor.h \
940    ../appUtil/utilPalette.h \
941    ../appUtil/utilColor.h \
942    ../appUtil/utilMemoryBuffer.h \
943    ../appUtil/geo2DInteger.h \
944    ../appUtil/sioFileio.h \
945    ../appUtil/utilMemoryBuffer.h \
946    ../appUtil/sioGeneral.h \
947    ../include/appDebugon.h \
948    ../include/appDebug.h
949
950bmxpm.o: \
951    bmxpm.c \
952    bitmapConfig.h \
953    ../include/appDebugon.h \
954    ../include/appDebug.h \
955    bmintern.h \
956    bitmap.h \
957    ../appUtil/utilColor.h \
958    ../appUtil/utilPalette.h \
959    ../appUtil/utilColor.h \
960    ../appUtil/utilMemoryBuffer.h \
961    ../appUtil/geo2DInteger.h
962
963bmxwd.o: \
964    bmxwd.c \
965    bitmapConfig.h \
966    bmintern.h \
967    bitmap.h \
968    ../appUtil/utilColor.h \
969    ../appUtil/utilPalette.h \
970    ../appUtil/utilColor.h \
971    ../appUtil/utilMemoryBuffer.h \
972    ../appUtil/geo2DInteger.h \
973    ../appUtil/sioFileio.h \
974    ../appUtil/utilMemoryBuffer.h \
975    ../appUtil/sioGeneral.h \
976    ../appUtil/sioEndian.h \
977    ../include/appDebugon.h \
978    ../include/appDebug.h \
979    XWDFile.h
980
981