mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-12 12:09:15 +00:00
0389b0ea43
Models a 3d half-line, used for ray tracing
22 lines
262 B
Makefile
22 lines
262 B
Makefile
MODULE := math
|
|
|
|
MODULE_OBJS := \
|
|
aabb.o \
|
|
angle.o \
|
|
frustum.o \
|
|
glmath.o \
|
|
line2d.o \
|
|
line3d.o \
|
|
matrix3.o \
|
|
matrix4.o \
|
|
plane.o \
|
|
quat.o \
|
|
ray.o \
|
|
rect2d.o \
|
|
vector2d.o \
|
|
vector3d.o \
|
|
vector4d.o
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|