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

21 lines
231 B

10 years ago
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
10 years ago
$(MAKE) -C test clean
$(MAKE) -C sample clean
.PHONY: sample