hoard-sys 0.1.2

Rust FFI bindings to Hoard.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
DIRS := cache-scratch cache-thrash larson linux-scalability phong threadtest

all:
	for dir in $(DIRS); do \
	  (cd $$dir; ${MAKE}); \
	done

clean:
	for dir in $(DIRS); do \
	  (cd $$dir; ${MAKE} clean); \
	done