summaryrefslogtreecommitdiff
path: root/progs/samples/Imakefile
blob: 948a978359783e6bdcf289a4a348ebcc66886b39 (plain)
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
LOCAL_LIBRARIES = $(XLIB) $(TOP)\lib\glut.a $(TOP)\lib\Mesaglu.a $(TOP)\lib\MesaGL.a

INCLUDES = -I$(TOP)\include

SRCS = accum.c \
      bitmap1.c \
      bitmap2.c \
      blendeq.c \
      blendxor.c \
      copy.c \
      cursor.c \
      depth.c \
      eval.c \
      fog.c \
      font.c \
      line.c \
      logo.c \
      nurb.c \
      oglinfo.c \
      olympic.c \
      overlay.c \
      point.c \
      prim.c \
      quad.c \
      select.c \
      shape.c \
      speed.c \
      sphere.c \
      star.c \
      stencil.c \
      stretch.c \
      texture.c \
      tri.c \
      wave.c

PROGRAMS = ProgramTargetName(accum) \
      ProgramTargetName(bitmap1) \
      ProgramTargetName(bitmap2) \
      ProgramTargetName(blendeq) \
      ProgramTargetName(blendxor) \
      ProgramTargetName(copy) \
      ProgramTargetName(cursor) \
      ProgramTargetName(depth) \
      ProgramTargetName(eval) \
      ProgramTargetName(fog) \
      ProgramTargetName(font) \
      ProgramTargetName(line) \
      ProgramTargetName(logo) \
      ProgramTargetName(nurb) \
      ProgramTargetName(oglinfo) \
      ProgramTargetName(olympic) \
      ProgramTargetName(overlay) \
      ProgramTargetName(point) \
      ProgramTargetName(prim) \
      ProgramTargetName(quad) \
      ProgramTargetName(select) \
      ProgramTargetName(shape) \
      ProgramTargetName(speed) \
      ProgramTargetName(sphere) \
      ProgramTargetName(star) \
      ProgramTargetName(stencil) \
      ProgramTargetName(stretch) \
      ProgramTargetName(texture) \
      ProgramTargetName(tri) \
      ProgramTargetName(wave)

AllTarget($(PROGRAMS))

NormalProgramTarget(accum,accum.o,NullParameter,$(LOCAL_LIBRARIES),NullParameter)
NormalProgramTarget(bitmap1,bitmap1.o,NullParameter,$(LOCAL_LIBRARIES),NullParameter)
NormalProgramTarget(bitmap2,bitmap2.o,NullParameter,$(LOCAL_LIBRARIES),NullParameter)
NormalProgramTarget(blendeq,blendeq.o,NullParameter,$(LOCAL_LIBRARIES),NullParameter)
NormalProgramTarget(blendxor,blendxor.o,NullParameter,$(LOCAL_LIBRARIES),NullParameter)
NormalProgramTarget(copy,copy.o,NullParameter,$(LOCAL_LIBRARIES),NullParameter)
NormalProgramTarget(cursor,cursor.o,NullParameter,$(LOCAL_LIBRARIES),NullParameter)
NormalProgramTarget(depth,depth.o,NullParameter,$(LOCAL_LIBRARIES),NullParameter)
NormalProgramTarget(eval,eval.o,NullParameter,$(LOCAL_LIBRARIES),NullParameter)
NormalProgramTarget(fog,fog.o,NullParameter,$(LOCAL_LIBRARIES),NullParameter)
NormalProgramTarget(font,font.o,NullParameter,$(LOCAL_LIBRARIES),NullParameter)
NormalProgramTarget(line,line.o,NullParameter,$(LOCAL_LIBRARIES),NullParameter)
NormalProgramTarget(logo,logo.o,NullParameter,$(LOCAL_LIBRARIES),NullParameter)
NormalProgramTarget(nurb,nurb.o,NullParameter,$(LOCAL_LIBRARIES),NullParameter)
NormalProgramTarget(oglinfo,oglinfo.o,NullParameter,$(LOCAL_LIBRARIES),NullParameter)
NormalProgramTarget(olympic,olympic.o,NullParameter,$(LOCAL_LIBRARIES),NullParameter)
NormalProgramTarget(overlay,overlay.o,NullParameter,$(LOCAL_LIBRARIES),NullParameter)
NormalProgramTarget(point,point.o,NullParameter,$(LOCAL_LIBRARIES),NullParameter)
NormalProgramTarget(prim,prim.o,NullParameter,$(LOCAL_LIBRARIES),NullParameter)
NormalProgramTarget(quad,quad.o,NullParameter,$(LOCAL_LIBRARIES),NullParameter)
NormalProgramTarget(select,select.o,NullParameter,$(LOCAL_LIBRARIES),NullParameter)
NormalProgramTarget(shape,shape.o,NullParameter,$(LOCAL_LIBRARIES),NullParameter)
NormalProgramTarget(speed,speed.o,NullParameter,$(LOCAL_LIBRARIES),NullParameter)
NormalProgramTarget(sphere,sphere.o,NullParameter,$(LOCAL_LIBRARIES),NullParameter)
NormalProgramTarget(star,star.o,NullParameter,$(LOCAL_LIBRARIES),NullParameter)
NormalProgramTarget(stencil,stencil.o,NullParameter,$(LOCAL_LIBRARIES),NullParameter)
NormalProgramTarget(stretch,stretch.o,NullParameter,$(LOCAL_LIBRARIES),NullParameter)
NormalProgramTarget(texture,texture.o,NullParameter,$(LOCAL_LIBRARIES),NullParameter)
NormalProgramTarget(tri,tri.o,NullParameter,$(LOCAL_LIBRARIES),NullParameter)
NormalProgramTarget(wave,wave.o,NullParameter,$(LOCAL_LIBRARIES),NullParameter)

DependTarget()