Excuse me, How can I get the absolute path of externals object made by C? I made my original object by C programming. The object needs the absolute path to read HRTF databases. Now, the object got the absolute path from Makefile which get the path by shell-script. However, when someone gets my object from deken, he must run "make". I want everyone to use my object directly without running "make". How can I get absolute paths directly within the C program?
※I had already tried to use getcwd() of unistd.h, but I can't get the absolute path...