From 032ef0badd40723abc0e76e89c0cd6bd35e00709 Mon Sep 17 00:00:00 2001 From: Irene Zhang <iyzhang@myst.cs.washington.edu> Date: Tue, 30 Jun 2015 08:06:23 -0700 Subject: [PATCH] adding make file for transactional stores --- store/txnstore/lib/Rules.mk | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 store/txnstore/lib/Rules.mk diff --git a/store/txnstore/lib/Rules.mk b/store/txnstore/lib/Rules.mk new file mode 100644 index 0000000..263b3e8 --- /dev/null +++ b/store/txnstore/lib/Rules.mk @@ -0,0 +1,6 @@ +d := $(dir $(lastword $(MAKEFILE_LIST))) + +SRCS += $(addprefix $(d), \ + txnstore.cc occstore.cc lockstore.cc) + +LIB-txnstore := $(o)txnstore.o $(o)occstore.o $(o)lockstore.o \ No newline at end of file -- GitLab