From 5a1d67d1797a3db874e44500e13237d676843185 Mon Sep 17 00:00:00 2001 From: vimene Date: Sun, 26 Nov 2023 08:43:14 +0100 Subject: added namespaces, made every function in engine.cpp static and added warnings' flags --- Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Makefile.am') diff --git a/Makefile.am b/Makefile.am index 2a81b4c..7f0c5bf 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,6 +1,6 @@ ACLOCAL_AMFLAGS = -Im4 --install -AM_CPPFLAGS = $(DEPS_CFLAGS) +AM_CPPFLAGS = $(DEPS_CFLAGS) -Wall -Wextra bin_PROGRAMS = engine engine_SOURCES = src/engine.cpp \ @@ -10,6 +10,7 @@ engine_SOURCES = src/engine.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_LDFLAGS = -Wall -Wextra engine_LDADD = $(DEPS_LIBS) EXTRA_DIST = m4/NOTES -- cgit v1.2.3