Makefile Template for a Shared Library in C (with Explanations)
Last updated on October 28, 2019 tl;dr: Save the following file as Makefile and change the source files to the ones that you intend. # Makefile template for a shared library in C # https://www.topbug.net/blog/2019/10/28/makefile-template-for-a-shared-library-in-c-with-explanations/ CC = gcc # C compiler CFLAGS = -fPIC -Wall -Wextra -O2 -g # C flags LDFLAGS = -shared #…
Read More “Makefile Template for a Shared Library in C (with Explanations)” »