aboutsummaryrefslogtreecommitdiff
path: root/Makefile.am
blob: 0045247d80f281c13c13c8f63d3920754035b992 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
ACLOCAL_AMFLAGS = -Im4 --install

bin_PROGRAMS = engine
engine_SOURCES = src/engine.cpp \
                 src/fb/chfb.h src/fb/chfb.cpp src/fb/pixfb.h src/fb/pixfb.cpp \
                 src/math/math_vector.h src/math/math_vector.cpp \
                 src/math/mat4.h src/math/mat4.cpp \
                 src/o3d/mesh.h src/o3d/mesh.cpp src/o3d/tri_vertex.h \
                 src/o3d/obj3d.h src/o3d/obj3d.cpp src/o3d/tri_vertex.h \
                 src/o3d/tri_vertex.cpp src/o3d/vertex.h src/o3d/vertex.cpp \
                 src/o3d/vertex_data.h src/o3d/vertex_data.cpp \
                 src/o3d/camera.h src/o3d/camera.cpp \
                 src/o3d/scene.h src/o3d/scene.cpp
engine_CPPFLAGS = -Wall -Wextra $(DEPS_CPPFLAGS)
engine_LDFLAGS = -Wall -Wextra
engine_LDADD = $(DEPS_LIBS)

check_PROGRAMS = engine-tests
engine_tests_SOURCES = tests/test.c
engine_tests_CPPFLAGS = -Wall -Wextra $(TESTS_DEPS_CPPFLAGS)
engine_tests_LDFLAGS = -Wall -Wextra
engine_tests_LDADD = $(TESTS_DEPS_LIBS)

EXTRA_DIST = m4/NOTES