diff options
author | vimene <vincent.menegaux@gmail.com> | 2023-11-21 03:11:49 +0100 |
---|---|---|
committer | vimene <vincent.menegaux@gmail.com> | 2023-11-21 03:11:49 +0100 |
commit | 7b2bb469c13702498a49d6a8a9cf1bd2a4efcfff (patch) | |
tree | 248f1926c49e87c8a2dd3f9025beb7ae7e6f63ab /Makefile.am | |
parent | 5f5d5d07c3ea8bead4241d6cce9ee14be226610b (diff) | |
download | engine-7b2bb469c13702498a49d6a8a9cf1bd2a4efcfff.tar.gz |
renamed binary from 'main' to 'engine'
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am index 2cfe39b..6c8ff00 100644 --- a/Makefile.am +++ b/Makefile.am @@ -2,8 +2,8 @@ ACLOCAL_AMFLAGS = -Im4 --install AM_CPPFLAGS = $(DEPS_CFLAGS) -bin_PROGRAMS = main -main_SOURCES = src/chfb.cpp src/chfb.h src/main.cpp src/math_vector.cpp src/math_vector.h src/obj3d.cpp src/obj3d.h src/pixfb.cpp src/pixfb.h src/tri_vertex.cpp src/tri_vertex.h src/vertex.cpp src/vertex_data.cpp src/vertex_data.h src/vertex.h -main_LDADD = $(DEPS_LIBS) +bin_PROGRAMS = engine +engine_SOURCES = src/chfb.cpp src/chfb.h src/engine.cpp src/math_vector.cpp src/math_vector.h src/obj3d.cpp src/obj3d.h src/pixfb.cpp src/pixfb.h src/tri_vertex.cpp src/tri_vertex.h src/vertex.cpp src/vertex_data.cpp src/vertex_data.h src/vertex.h +engine_LDADD = $(DEPS_LIBS) EXTRA_DIST = m4/NOTES |