I use the GCC compiler.
When compiling a program one often needs to link in a huge number of library files like .so extension to get the program to work.
Now for the C program that I am writing all the library files I need to link are inside a folder.
What should I write in my GNU Makefile if I wish to link ALL the library files in that folder to my program/executable.
1 Answer