-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
44 lines (35 loc) · 817 Bytes
/
Makefile
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
INCLUDES = -Iincludes/ -Iincludes/raylib -lm libraylib.a -g
main:
cc [email protected] -o $@ $(INCLUDES)
./$@
rm $@
show:
feh dev-imgs/raycaster_saved/$(idx).ppm
starfield3d:
cc examples/[email protected] -o examples/$@ $(INCLUDES)
./examples/$@
rm examples/$@
tringle_transformations:
cc examples/[email protected] -o examples/$@ $(INCLUDES)
./examples/$@
rm examples/$@
bary_traingle:
cc examples/[email protected] -o examples/$@ $(INCLUDES)
./examples/$@
rm examples/$@
rendering_imgs:
cc examples/[email protected] -o examples/$@ $(INCLUDES)
./examples/$@
rm examples/$@
texture_mapping:
cc examples/[email protected] -o examples/$@ $(INCLUDES)
./examples/$@
rm examples/$@
perspective_correction:
cc examples/[email protected] -o examples/$@ $(INCLUDES)
./examples/$@
rm examples/$@
raytracer:
cc examples/[email protected] -o examples/$@ $(INCLUDES)
./examples/$@
rm examples/$@