added big int lib

This commit is contained in:
nils polek
2024-01-15 16:28:41 +00:00
parent 3935d2778b
commit ac57431ac4
19 changed files with 2615 additions and 2 deletions

22
bigint/Makefile Normal file
View File

@@ -0,0 +1,22 @@
#
# Makefile for big integer library and test
#
DIRS = src tst
all:
for i in $(DIRS) ; do \
$(MAKE) -C $$i install ; \
done
clean:
for i in $(DIRS) ; do \
$(MAKE) -C $$i clean ; \
done
rm -rf ./build
rm -f *~
dist: clean
(cd .. ; \
tar -cvf bigint.tar bigint ; \
gzip -f bigint.tar)