hoard-sys 0.1.2

Rust FFI bindings to Hoard.
Documentation
1
2
3
4
5
6
7
8
9
10
include ../Makefile.inc

TARGET = threadtest

$(TARGET): threadtest.cpp
	$(CXX) -std=c++14 $(CXXFLAGS) threadtest.cpp -o $(TARGET) -lpthread
#	$(CXX) -std=c++14 $(CXXFLAGS) -fsized-deallocation threadtest.cpp -o $(TARGET) -lpthread

clean:
	rm -f $(TARGET)