1
  
2
  
3
  
4
  
5
  
6
  
7
  
8
  
9
  
10
  
11
  
12
  
13
  
14
  
15
  
16
  
17
  
18
  
19
  
20
  
21
  
22
  
23
  
24
  
25
  
26
  
27
  
28
  
29
  
30
  
31
  
32
  
33
  
34
  
35
  
36
  
37
  
38
  
39
  
40
  
41
  
42
  
43
  
44
  
45
  
46
  
47
  
48
  
49
  
50
  
51
  
52
  
53
  
54
  
55
  
56
  
57
  
58
  
59
  
60
  
61
  
62
  
63
  
64
  
65
  
66
  
67
  
68
  
69
  
70
  
71
  
72
  
73
  
74
  
75
  
76
  
77
  
78
  
79
  
80
  
# $Id: Makefile,v 1.16 1999/04/12 11:44:29 mirar Exp $ 
 
DOCFILES = doc-header            \ 
        image.c                                                         \ 
        ../_Image_JPEG/acconfig.h                                       \ 
        ../_Image_JPEG/image_jpeg.c                                     \ 
        ../_Image_TIFF/acconfig.h                                       \ 
        ../_Image_TIFF/image_tiff.c                                     \ 
        ../_Image_TTF/acconfig.h                                        \ 
        ../_Image_TTF/image_ttf.c                                       \ 
        ../_Image_XFace/acconfig.h                                      \ 
        ../_Image_XFace/image_xface.c                                   \ 
        acconfig.h                                                      \ 
        blit.c                                                          \ 
        blit_layer_include.h                                            \ 
        colors.c                                                        \ 
        colors.h                                                        \ 
        colortable.c                                                    \ 
        colortable.h                                                    \ 
        colortable_lookup.h                                             \ 
        dct.c                                                           \ 
        encodings/_xpm.c                                                \ 
        encodings/any.c                                                 \ 
        encodings/bmp.c                                                 \ 
        encodings/gif.c                                                 \ 
        encodings/gif_lzw.c                                             \ 
        encodings/gif_lzw.h                                             \ 
        encodings/iff.c                                                 \ 
        encodings/ilbm.c                                                \ 
        encodings/pcx.c                                                 \ 
        encodings/png.c                                                 \ 
        encodings/pnm.c                                                 \ 
        encodings/tga.c                                                 \ 
        encodings/x.c                                                   \ 
        encodings/xbm.c                                                 \ 
        encodings/xcf.c                                                 \ 
        encodings/xcf_constant_strings.h                                \ 
        encodings/xwd.c                                                 \ 
        font.c                                                          \ 
        image.h                                                         \ 
        match.h                                                         \ 
        matrix.c                                                        \ 
        operator.c                                                      \ 
        orient.c                                                        \ 
        pattern.c                                                       \ 
        phase.h                                                         \ 
        pnm_compat.c                                                    \ 
        polyfill.c                                                      \ 
        search.c                                                        \ 
        togif.c                                                         \ 
        x.c \ 
        doc-footer                      
 
WMMLDOCPLACE = ../../../tutorial/Image.wmml 
 
pike=pike 
 
default: 
        echo "This makefile only builds documentation. Please run configure." 
        echo "To build HTML documentation, type 'make doc'." 
        echo "To build WMML documentation, type 'make wmml'." 
 
doc:    $(DOCFILES) mkdoc.pike Makefile 
        $(pike) mkdoc.pike $(DOCFILES) 
 
$(WMMLDOCPLACE): $(DOCFILES) ../../../bin/mkwmml.pike Makefile 
        $(pike) ../../../bin/mkwmml.pike --nonverbose $(DOCFILES) \ 
          >$(WMMLDOCPLACE) 
 
wmml:   $(WMMLDOCPLACE) 
 
module_testsuite.in: testsuite.in.in mktests.pike 
        pike mktests.pike -t testsuite.in.in >module_testsuite.in 
 
tests.pike: testsuite.in.in mktests.pike 
        pike mktests.pike testsuite.in.in >tests.pike 
 
test:   tests.pike 
        pike tests.pike