This commit is contained in:
2024-01-18 16:21:34 +01:00
parent ac57431ac4
commit dbafdbeea5
22 changed files with 8 additions and 1464 deletions

View File

@@ -1,22 +0,0 @@
#
# 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)