From aea75bbe7c922c6cb627c8d0a4bcbe22a6ef5641 Mon Sep 17 00:00:00 2001 From: Recep Aslantas Date: Tue, 23 Aug 2022 14:13:00 +0300 Subject: [PATCH] build: update Makefile.am --- Makefile.am | 69 ++++++++++++++++++++++++++++++----------------------- 1 file changed, 39 insertions(+), 30 deletions(-) diff --git a/Makefile.am b/Makefile.am index 7132e60..b7c9470 100644 --- a/Makefile.am +++ b/Makefile.am @@ -46,16 +46,19 @@ cglm_HEADERS = include/cglm/version.h \ include/cglm/mat3.h \ include/cglm/mat2.h \ include/cglm/affine.h \ + include/cglm/affine-mat.h \ include/cglm/vec2.h \ include/cglm/vec2-ext.h \ + include/cglm/ivec2.h \ include/cglm/vec3.h \ include/cglm/vec3-ext.h \ + include/cglm/ivec3.h \ include/cglm/vec4.h \ include/cglm/vec4-ext.h \ + include/cglm/ivec4.h \ include/cglm/euler.h \ include/cglm/util.h \ include/cglm/quat.h \ - include/cglm/affine-mat.h \ include/cglm/plane.h \ include/cglm/frustum.h \ include/cglm/box.h \ @@ -71,22 +74,22 @@ cglm_HEADERS = include/cglm/version.h \ cglm_clipspacedir=$(includedir)/cglm/clipspace cglm_clipspace_HEADERS = include/cglm/clipspace/persp.h \ - include/cglm/clipspace/persp_lh_zo.h \ - include/cglm/clipspace/persp_rh_zo.h \ include/cglm/clipspace/persp_lh_no.h \ + include/cglm/clipspace/persp_lh_zo.h \ include/cglm/clipspace/persp_rh_no.h \ - include/cglm/clipspace/ortho_lh_zo.h \ - include/cglm/clipspace/ortho_rh_zo.h \ + include/cglm/clipspace/persp_rh_zo.h \ include/cglm/clipspace/ortho_lh_no.h \ + include/cglm/clipspace/ortho_lh_zo.h \ include/cglm/clipspace/ortho_rh_no.h \ + include/cglm/clipspace/ortho_rh_zo.h \ include/cglm/clipspace/view_lh.h \ include/cglm/clipspace/view_rh.h \ - include/cglm/clipspace/view_lh_zo.h \ - include/cglm/clipspace/view_rh_zo.h \ include/cglm/clipspace/view_lh_no.h \ + include/cglm/clipspace/view_lh_zo.h \ include/cglm/clipspace/view_rh_no.h \ - include/cglm/clipspace/project_zo.h \ - include/cglm/clipspace/project_no.h + include/cglm/clipspace/view_rh_zo.h \ + include/cglm/clipspace/project_no.h \ + include/cglm/clipspace/project_zo.h cglm_calldir=$(includedir)/cglm/call cglm_call_HEADERS = include/cglm/call/mat4.h \ @@ -95,7 +98,9 @@ cglm_call_HEADERS = include/cglm/call/mat4.h \ include/cglm/call/vec2.h \ include/cglm/call/vec3.h \ include/cglm/call/vec4.h \ - include/cglm/call/affine.h \ + include/cglm/call/ivec2.h \ + include/cglm/call/ivec3.h \ + include/cglm/call/ivec4.h \ include/cglm/call/io.h \ include/cglm/call/cam.h \ include/cglm/call/quat.h \ @@ -109,21 +114,22 @@ cglm_call_HEADERS = include/cglm/call/mat4.h \ include/cglm/call/curve.h \ include/cglm/call/bezier.h \ include/cglm/call/ray.h \ + include/cglm/call/affine.h \ include/cglm/call/affine2d.h cglm_call_clipspacedir=$(includedir)/cglm/call/clipspace -cglm_call_clipspace_HEADERS = include/cglm/call/clipspace/persp_lh_zo.h \ - include/cglm/call/clipspace/persp_rh_zo.h \ - include/cglm/call/clipspace/persp_lh_no.h \ +cglm_call_clipspace_HEADERS = include/cglm/call/clipspace/persp_lh_no.h \ + include/cglm/call/clipspace/persp_lh_zo.h \ include/cglm/call/clipspace/persp_rh_no.h \ - include/cglm/call/clipspace/ortho_lh_zo.h \ - include/cglm/call/clipspace/ortho_rh_zo.h \ + include/cglm/call/clipspace/persp_rh_zo.h \ include/cglm/call/clipspace/ortho_lh_no.h \ + include/cglm/call/clipspace/ortho_lh_zo.h \ include/cglm/call/clipspace/ortho_rh_no.h \ - include/cglm/call/clipspace/view_lh_zo.h \ - include/cglm/call/clipspace/view_rh_zo.h \ + include/cglm/call/clipspace/ortho_rh_zo.h \ include/cglm/call/clipspace/view_lh_no.h \ + include/cglm/call/clipspace/view_lh_zo.h \ include/cglm/call/clipspace/view_rh_no.h \ + include/cglm/call/clipspace/view_rh_zo.h \ include/cglm/call/clipspace/project_no.h \ include/cglm/call/clipspace/project_zo.h @@ -144,22 +150,23 @@ cglm_simd_avx_HEADERS = include/cglm/simd/avx/mat4.h \ include/cglm/simd/avx/affine.h cglm_simd_neondir=$(includedir)/cglm/simd/neon -cglm_simd_neon_HEADERS = include/cglm/simd/neon/mat4.h \ +cglm_simd_neon_HEADERS = include/cglm/simd/neon/affine.h \ include/cglm/simd/neon/mat2.h \ - include/cglm/simd/neon/affine.h \ + include/cglm/simd/neon/mat4.h \ include/cglm/simd/neon/quat.h cglm_structdir=$(includedir)/cglm/struct cglm_struct_HEADERS = include/cglm/struct/mat4.h \ include/cglm/struct/mat3.h \ include/cglm/struct/mat2.h \ + include/cglm/struct/affine.h \ + include/cglm/struct/affine2d.h \ include/cglm/struct/vec2.h \ include/cglm/struct/vec2-ext.h \ include/cglm/struct/vec3.h \ include/cglm/struct/vec3-ext.h \ include/cglm/struct/vec4.h \ include/cglm/struct/vec4-ext.h \ - include/cglm/struct/affine.h \ include/cglm/struct/io.h \ include/cglm/struct/cam.h \ include/cglm/struct/quat.h \ @@ -170,22 +177,21 @@ cglm_struct_HEADERS = include/cglm/struct/mat4.h \ include/cglm/struct/project.h \ include/cglm/struct/sphere.h \ include/cglm/struct/color.h \ - include/cglm/struct/curve.h \ - include/cglm/struct/affine2d.h + include/cglm/struct/curve.h cglm_struct_clipspacedir=$(includedir)/cglm/struct/clipspace -cglm_struct_clipspace_HEADERS = include/cglm/struct/clipspace/persp_lh_zo.h \ - include/cglm/struct/clipspace/persp_rh_zo.h \ - include/cglm/struct/clipspace/persp_lh_no.h \ +cglm_struct_clipspace_HEADERS = include/cglm/struct/clipspace/persp_lh_no.h \ + include/cglm/struct/clipspace/persp_lh_zo.h \ include/cglm/struct/clipspace/persp_rh_no.h \ - include/cglm/struct/clipspace/ortho_lh_zo.h \ - include/cglm/struct/clipspace/ortho_rh_zo.h \ + include/cglm/struct/clipspace/persp_rh_zo.h \ include/cglm/struct/clipspace/ortho_lh_no.h \ + include/cglm/struct/clipspace/ortho_lh_zo.h \ include/cglm/struct/clipspace/ortho_rh_no.h \ - include/cglm/struct/clipspace/view_lh_zo.h \ - include/cglm/struct/clipspace/view_rh_zo.h \ + include/cglm/struct/clipspace/ortho_rh_zo.h \ include/cglm/struct/clipspace/view_lh_no.h \ - include/cglm/struct/clipspace/view_rh_no.h + include/cglm/struct/clipspace/view_lh_zo.h \ + include/cglm/struct/clipspace/view_rh_no.h \ + include/cglm/struct/clipspace/view_rh_zo.h libcglm_la_SOURCES=\ src/euler.c \ @@ -194,8 +200,11 @@ libcglm_la_SOURCES=\ src/quat.c \ src/cam.c \ src/vec2.c \ + src/ivec2.c \ src/vec3.c \ + src/ivec3.c \ src/vec4.c \ + src/ivec4.c \ src/mat2.c \ src/mat3.c \ src/mat4.c \