Makefile: change to absolute path, and debug create lib.so if need

This commit is contained in:
2025-10-28 19:13:28 +01:00
parent 1b78925f26
commit 1eb30ff794
27 changed files with 364 additions and 434 deletions
+7 -6
View File
@@ -1,11 +1,12 @@
# file tensor_t/Makefile
ROOTPROJECTDIR:=$(realpath ..)
CC=gcc
TOOLDIR=$(PWD)/../ytools_t
PERMDIR=$(PWD)/../ypermutation_t
TOOLDIR=$(ROOTPROJECTDIR)/ytools_t
PERMDIR=$(ROOTPROJECTDIR)/ypermutation_t
DIMDIR=$(PWD)/../dimension_t
INCLUDE_TENS=$(PWD)/src
DIMDIR=$(ROOTPROJECTDIR)/dimension_t
TENSEDIR=$(ROOTPROJECTDIR)/tensor_t
INCLUDE_TENS=$(TENSEDIR)/src
INCLUDE_PERMDIR=$(PERMDIR)/src
INCLUDE_DIMDIR=$(DIMDIR)/src
INCLUDE_TOOLDIR=$(TOOLDIR)/include