blob: 0f451cac31ca0dc6e6df2ecc5568daa063764f7b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
ACLOCAL_AMFLAGS = -Im4 --install
AM_CPPFLAGS = $(DEPS_CFLAGS)
bin_PROGRAMS = engine
engine_SOURCES = src/engine.cpp
engine_SOURCES += src/fb/chfb.h src/fb/chfb.cpp src/fb/pixfb.h src/fb/pixfb.cpp
engine_SOURCES += src/math/math_vector.h src/math/math_vector.cpp
engine_SOURCES += 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
engine_LDADD = $(DEPS_LIBS)
EXTRA_DIST = m4/NOTES
|