This file is indexed.

/usr/share/doc/libg2-dev/examples/descrip.mms is in libg2-dev 0.72-5.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
!
! VMS descrip.mms for g2
!
GD_INCLUDE = [.-.-.GD-1_8_4]


.IFDEF debug
CC_FLAGS        = /noopt/debug/nolist/warnings/include_directory=("./src",$(GD_INCLUDE)) \
                  /define=(DO_PS, DO_X11, DO_GD)
.ELSE
CC_FLAGS        = /nolist/warnings/include_directory=("./src",$(GD_INCLUDE)) \
                  /define=(DO_PS, DO_X11, DO_GD)
.ENDIF

!
! Object files
!
OBJ     = [.src]g2_device.obj, [.src]g2_fif.obj, [.src]g2_graphic_pd.obj, \
          [.src]g2_physical_device.obj, [.src]g2_ui_control.obj, \
          [.src]g2_ui_device.obj, [.src]g2_ui_graphic.obj, \
          [.src]g2_ui_virtual_device.obj, [.src]g2_util.obj, \
          [.src]g2_virtual_device.obj, [.src]g2_control_pd.obj, \
	  [.src]g2_splines.obj
OBJ_X11 = [.src.X11]g2_X11.obj
OBJ_PS  = [.src.PS]g2_PS.obj
OBJ_GD  = [.src.GD]g2_GD.obj

HEADERS     = [.src]g2.h, [.src]g2_config.h, [.src]g2_device.h, \
              [.src]g2_funix.h, [.src]g2_graphic_pd.h, \
              [.src]g2_physical_device.h, [.src]g2_util.h, \
              [.src]g2_virtual_device.h, [.src]g2_control_pd.h
HEADERS_X11 = [.src.X11]g2_X11.h, [.src.X11]g2_X11_P.h, \
              [.src.X11]g2_X11_funix.h
HEADERS_PS  = [.src.PS]g2_PS.h, [.src.PS]g2_PS_P.h, \
              [.src.PS]g2_PS_definitions.h, [.src.PS]g2_PS_funix.h
HEADERS_GD  = [.src.GD]g2_GD.h, [.src.GD]g2_GD_P.h, [.src.GD]g2_GD_funix.h
!
! Rules
!
.c.obj	: ; cc $(CC_FLAGS)/obj=$(mms$target) $(mms$source)


all	: g2.olb
	@ write sys$output "Done."

g2.olb	: $(OBJ) $(OBJ_X11) $(OBJ_PS) $(OBJ_GD)
	library/create g2.olb $(OBJ), $(OBJ_X11), $(OBJ_PS), $(OBJ_GD)

clean	:
	delete [...]*.exe;* , [...]*.obj;* , [...]*.olb;*


!
! Dependencies
!
[.src]g2_device.obj		: [.src]g2_device.c            $(HEADERS)
[.src]g2_fif.obj		: [.src]g2_fif.c               $(HEADERS)
[.src]g2_graphic_pd.obj		: [.src]g2_graphic_pd.c        $(HEADERS)
[.src]g2_physical_device.obj	: [.src]g2_physical_device.c   $(HEADERS)
[.src]g2_ui_control.obj		: [.src]g2_ui_control.c        $(HEADERS)
[.src]g2_ui_device.obj		: [.src]g2_ui_device.c         $(HEADERS)
[.src]g2_ui_graphic.obj		: [.src]g2_ui_graphic.c        $(HEADERS)
[.src]g2_ui_virtual_device.obj	: [.src]g2_ui_virtual_device.c $(HEADERS)
[.src]g2_util.obj		: [.src]g2_util.c              $(HEADERS)
[.src]g2_virtual_device.obj	: [.src]g2_virtual_device.c    $(HEADERS)
[.src]g2_splines.obj		: [.src]g2_splines.c	       $(HEADERS)
		
[.X11]g2_X11.obj	 : [.src.X11]g2_X11.c  $(HEADERS) $(HEADERS_X11)
[.PS]g2_PS.obj		 : [.src.PS]g2_PS.c    $(HEADERS) $(HEADERS_PS)
[.GD]g2_GD.obj		 : [.src.GD]g2_GD.c    $(HEADERS) $(HEADERS_GD)