posint morphisms in C
This commit is contained in:
commit
06227a2731
4 changed files with 174 additions and 0 deletions
morphisms
11
morphisms/Makefile
Normal file
11
morphisms/Makefile
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue