Revert "update"

This reverts commit dbafdbeea5.
This commit is contained in:
2024-01-18 17:24:01 +01:00
parent dbafdbeea5
commit 5039f95153
22 changed files with 1464 additions and 8 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)