22
bigint/Makefile
Normal file
22
bigint/Makefile
Normal 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)
|
||||
Reference in New Issue
Block a user