While working on the Makefile, I also discovered that I can improve compatibility with a lot of LINUX distros by reversing the order of the two parameters that have been passed to the g++ compiler. Instead of passing $(LIBS) first and then $(OBJS), I had better results passing $(OBJS) first followed by $(LIBS). Accordingly, the Makefile (this example is for version 9.62) now looks like THIS:
I deleted the following pair of stale old lines from the Makefile:
mkdir -p ~/.LAC
cp DefaultHeightMap.LAC ~/.LAC/DefaultHeightMap.LAC
While working on the Makefile, I also discovered that I can improve compatibility with a lot of LINUX distros by reversing the order of the two parameters that have been passed to the g++ compiler. Instead of passing $(LIBS) first and then $(OBJS), I had better results passing $(OBJS) first followed by $(LIBS). Accordingly, the Makefile (this example is for version 9.62) now looks like THIS:
============ BEGIN Makefile ===========
============= END Makefile ============
Last edit: bbosen 2024-03-21