This commit is contained in:
nilspolek
2024-01-28 10:54:17 +01:00
parent 84dcb63ea7
commit 221a08e7dc
19 changed files with 0 additions and 2616 deletions

View File

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