Revert "testing"

This reverts commit 221a08e7
This commit is contained in:
2024-01-28 17:03:10 +01:00
parent 35f051b5da
commit 3c3d2716a5
21 changed files with 2704 additions and 79 deletions

22
bigint/Makefile Normal file
View File

@@ -0,0 +1,22 @@
#
# Makefile for big integer library and test
#
DIRS = src tst
all: clean
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)