build: add missing files

This commit is contained in:
Recep Aslantas
2021-08-16 01:10:29 +03:00
parent 6cf1fb8992
commit 4530e0381b
3 changed files with 40 additions and 6 deletions

View File

@@ -84,7 +84,9 @@ cglm_clipspace_HEADERS = include/cglm/clipspace/persp.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_rh_no.h
include/cglm/clipspace/view_rh_no.h \
include/cglm/clipspace/project_zo.h \
include/cglm/clipspace/project_no.h
cglm_calldir=$(includedir)/cglm/call
cglm_call_HEADERS = include/cglm/call/mat4.h \
@@ -109,6 +111,22 @@ cglm_call_HEADERS = include/cglm/call/mat4.h \
include/cglm/call/ray.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 \
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/ortho_lh_no.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/view_lh_no.h \
include/cglm/call/clipspace/view_rh_no.h \
include/cglm/call/clipspace/project_no.h \
include/cglm/call/clipspace/project_zo.h
cglm_simddir=$(includedir)/cglm/simd
cglm_simd_HEADERS = include/cglm/simd/intrin.h \
include/cglm/simd/x86.h \
@@ -167,9 +185,7 @@ cglm_struct_clipspace_HEADERS = include/cglm/struct/clipspace/persp_lh_zo.h \
include/cglm/struct/clipspace/view_lh_zo.h \
include/cglm/struct/clipspace/view_rh_zo.h \
include/cglm/struct/clipspace/view_lh_no.h \
include/cglm/struct/clipspace/view_rh_no.h \
include/cglm/struct/clipspace/project_zo.h \
include/cglm/struct/clipspace/project_no.h
include/cglm/struct/clipspace/view_rh_no.h
libcglm_la_SOURCES=\
src/euler.c \
@@ -204,8 +220,10 @@ libcglm_la_SOURCES=\
src/clipspace/view_lh_no.c \
src/clipspace/view_lh_zo.c \
src/clipspace/view_rh_no.c \
src/clipspace/view_rh_zo.c
src/clipspace/view_rh_zo.c \
src/clipspace/project_no.c \
src/clipspace/project_zo.c
test_tests_SOURCES=\
test/runner.c \
test/src/test_common.c \