a portable and fast pairing-based cryptography library
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
mcl/Makefile

20 lines
231 B

include common.mk
all:
$(MKDIR) bin
$(MAKE) -C test
$(MAKE) -C sample
test:
$(MAKE) -C test test
sample:
$(MAKE) -C sample test
clean:
$(MAKE) -C src clean
$(MAKE) -C test clean
$(MAKE) -C sample clean
.PHONY: sample