diff options
author | vimene <vincent.menegaux@gmail.com> | 2023-11-23 05:57:39 +0100 |
---|---|---|
committer | vimene <vincent.menegaux@gmail.com> | 2023-11-23 05:57:39 +0100 |
commit | 918e9c083b36acdfc3c61d86e5b54cd118caa591 (patch) | |
tree | f27e5fe294f0d0e7a90aa94d4835315486499209 /Makefile.am | |
parent | 6570a75b1d75f0c3b5a7307096efffb4f973e856 (diff) | |
download | engine-918e9c083b36acdfc3c61d86e5b54cd118caa591.tar.gz |
add options to choose render mode
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/Makefile.am b/Makefile.am index 0f451ca..fae27fd 100644 --- a/Makefile.am +++ b/Makefile.am @@ -3,10 +3,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_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/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 |