aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 51070f9d5dd940eda5535a40126a941c6adc3684 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
RUSTPKG ?= rustpkg
RUSTC ?= rustc
RUST_FLAGS ?= -Z debug-info -O

all:
	$(RUSTPKG) $(RUST_FLAGS) install crypto

test:
	$(RUSTC) $(RUST_FLAGS) --test src/crypto/lib.rs
	./src/crypto/crypto

clean:
	rm -rf bin/ lib/ build/ src/crypto/lib