From d7a72d72abf7831fc4b4885be71f340314e45388 Mon Sep 17 00:00:00 2001 From: Paul Oliver Date: Thu, 29 Feb 2024 01:50:44 +0100 Subject: Makefile now compiles both static and dynamic libraries. --- Makefile | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index e8f873a..1e80311 100644 --- a/Makefile +++ b/Makefile @@ -1,12 +1,14 @@ AR := ar CC := gcc -LIB := lib/libsalis.a +SLIB := lib/libsalis.a +DLIB := lib/libsalis.so SOURCES := $(wildcard src/*.c) OBJECTS := $(patsubst src/%.c,build/%.o,$(SOURCES)) DEPS := $(patsubst %.o,%.d,$(OBJECTS)) -LFLAGS := rs +SLFLAGS := rs +DLFLAGS := -shared # uncomment for debug # OFLAGS := -ggdb @@ -18,7 +20,8 @@ CFLAGS := -Iinclude -c $(OFLAGS) -MMD -Wall -Wextra -std=c89 -pedantic-errors \ -Wmissing-prototypes -Wstrict-prototypes -Wold-style-definition all: $(OBJECTS) - $(AR) $(LFLAGS) $(LIB) $(OBJECTS) + $(AR) $(SLFLAGS) $(SLIB) $(OBJECTS) + $(CC) $(DLFLAGS) -o $(DLIB) $(OBJECTS) $(MAKE) -C tsalis -include $(DEPS) @@ -28,5 +31,6 @@ $(OBJECTS): $(patsubst build/%.o,src/%.c,$@) clean: -rm build/* - -rm $(LIB) + -rm $(SLIB) + -rm $(DLIB) $(MAKE) clean -C tsalis -- cgit v1.2.1