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

all:
	$(RUSTPKG) $(RUST_FLAGS) install

test:
	$(RUSTC) $(RUST_FLAGS) --test lib.rs
	./rust-openssl

.PHONY: test

clean:
	rm -rf .rust rust-openssl rust-openssl.dSYM