aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPaul Oliver <contact@pauloliver.dev>2024-02-29 01:50:44 +0100
committerPaul Oliver <contact@pauloliver.dev>2024-02-29 01:50:44 +0100
commitd7a72d72abf7831fc4b4885be71f340314e45388 (patch)
tree2abf683bcd6dddf5fdd701f8688aa72528719202 /Makefile
parent07cb990645680f95c63526390c24c843cf7e9463 (diff)
Makefile now compiles both static and dynamic libraries.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 8 insertions, 4 deletions
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