posint morphisms in C

This commit is contained in:
Michael Sippel 2025-01-28 22:33:08 +01:00
commit 06227a2731
Signed by: senvas
GPG key ID: F96CF119C34B64A6
4 changed files with 174 additions and 0 deletions
morphisms

11
morphisms/Makefile Normal file
View file

@ -0,0 +1,11 @@
TARGETS=lib/posint.so
all: $(TARGETS)
lib/%.so: src/%.c
gcc -shared -o $@ -fPIC $<
clean:
rm $(TARGETS)
.PHONY: all clean