mirror of
https://github.com/recp/cglm.git
synced 2026-01-06 15:10:04 +00:00
re-organise files, remove cglm prefix from file to make them more clean
This commit is contained in:
92
makefile.am
92
makefile.am
@@ -33,50 +33,62 @@ test_tests_LDFLAGS = $(checkLDFLAGS)
|
||||
test_tests_CFLAGS = $(checkCFLAGS)
|
||||
|
||||
cglmdir=$(includedir)/cglm
|
||||
cglm_HEADERS = include/cglm-version.h \
|
||||
include/cglm.h \
|
||||
include/cglm-call.h \
|
||||
include/cglm-cam.h \
|
||||
include/cglm-io.h \
|
||||
include/cglm-mat3.h \
|
||||
include/cglm-types.h \
|
||||
include/cglm-common.h \
|
||||
include/cglm-affine.h \
|
||||
include/cglm-vec.h \
|
||||
include/cglm-euler.h \
|
||||
include/cglm-util.h \
|
||||
include/cglm-quat.h \
|
||||
include/cglm-mat.h \
|
||||
include/cglm-affine-mat.h
|
||||
|
||||
cglm_arch_simddir=$(includedir)/cglm/arch/simd/
|
||||
cglm_arch_simd_HEADERS = include/arch/simd/cglm-mat-simd-avx.h \
|
||||
include/arch/simd/cglm-affine-mat-avx.h \
|
||||
include/arch/simd/cglm-quat-simd.h \
|
||||
include/arch/simd/cglm-affine-mat-sse2.h \
|
||||
include/arch/simd/cglm-mat3-simd-sse2.h \
|
||||
include/arch/simd/cglm-mat-simd-sse2.h \
|
||||
include/arch/simd/cglm-intrin.h
|
||||
cglm_HEADERS = include/cglm/version.h \
|
||||
include/cglm/cglm.h \
|
||||
include/cglm/call.h \
|
||||
include/cglm/cam.h \
|
||||
include/cglm/io.h \
|
||||
include/cglm/mat4.h \
|
||||
include/cglm/mat3.h \
|
||||
include/cglm/types.h \
|
||||
include/cglm/common.h \
|
||||
include/cglm/affine.h \
|
||||
include/cglm/vec3.h \
|
||||
include/cglm/vec3-ext.h \
|
||||
include/cglm/vec4.h \
|
||||
include/cglm/vec4-ext.h \
|
||||
include/cglm/euler.h \
|
||||
include/cglm/util.h \
|
||||
include/cglm/quat.h \
|
||||
include/cglm/affine-mat.h
|
||||
|
||||
cglm_calldir=$(includedir)/cglm/call
|
||||
cglm_call_HEADERS = include/call/cglmc-euler.h \
|
||||
include/call/cglmc-quat.h \
|
||||
include/call/cglmc-cam.h \
|
||||
include/call/cglmc-io.h \
|
||||
include/call/cglmc-affine.h \
|
||||
include/call/cglmc-vec.h \
|
||||
include/call/cglmc-mat3.h \
|
||||
include/call/cglmc-mat.h
|
||||
cglm_call_HEADERS = include/cglm/call/mat4.h \
|
||||
include/cglm/call/mat3.h \
|
||||
include/cglm/call/vec3.h \
|
||||
include/cglm/call/vec4.h \
|
||||
include/cglm/call/affine.h \
|
||||
include/cglm/call/io.h \
|
||||
include/cglm/call/cam.h \
|
||||
include/cglm/call/quat.h \
|
||||
include/cglm/call/euler.h
|
||||
|
||||
cglm_simddir=$(includedir)/cglm/simd
|
||||
cglm_simd_HEADERS = include/cglm/simd/intrin.h
|
||||
|
||||
cglm_simd_sse2dir=$(includedir)/cglm/simd/sse2
|
||||
cglm_simd_sse2_HEADERS = include/cglm/simd/sse2/affine.h \
|
||||
include/cglm/simd/sse2/mat4.h \
|
||||
include/cglm/simd/sse2/mat3.h \
|
||||
include/cglm/simd/sse2/quat.h
|
||||
|
||||
cglm_simd_avxdir=$(includedir)/cglm/simd/avx
|
||||
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
|
||||
|
||||
libcglm_la_SOURCES=\
|
||||
src/cglm-euler.c \
|
||||
src/clgm-affine.c \
|
||||
src/cglm-io.c \
|
||||
src/cglm-quat.c \
|
||||
src/cglm-cam.c \
|
||||
src/cglm-vec.c \
|
||||
src/cglm-mat3.c \
|
||||
src/cglm-mat.c
|
||||
src/euler.c \
|
||||
src/affine.c \
|
||||
src/io.c \
|
||||
src/quat.c \
|
||||
src/cam.c \
|
||||
src/vec3.c \
|
||||
src/vec4.c \
|
||||
src/mat3.c \
|
||||
src/mat4.c
|
||||
|
||||
test_tests_SOURCES=\
|
||||
test/src/test_common.c \
|
||||
|
||||
Reference in New Issue
Block a user