move work_list (thrd_func_list) from history.h to execution.h, and fix the memory...
[c11tester.git] / Makefile
index 7c73b9ba92ab8744b55598a3d57a6436e26238d2..fcebbf36c21ebcfd7988238d8ee3799fb00e5f27 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,7 @@ OBJECTS := libthreads.o schedule.o model.o threads.o librace.o action.o \
           datarace.o impatomic.o cmodelint.o \
           snapshot.o malloc.o mymemory.o common.o mutex.o conditionvariable.o \
           context.o execution.o libannotate.o plugins.o pthread.o futex.o fuzzer.o \
-          sleeps.o
+          sleeps.o history.o funcnode.o
 
 CPPFLAGS += -Iinclude -I.
 LDFLAGS := -ldl -lrt -rdynamic
@@ -36,9 +36,8 @@ README.html: README.md
 malloc.o: malloc.c
        $(CC) -fPIC -c malloc.c -DMSPACES -DONLY_MSPACES -DHAVE_MMAP=0 $(CPPFLAGS) -Wno-unused-variable
 
-futex.o: futex.cc
-       $(CXX) -fPIC -c futex.cc -std=c++11 $(CPPFLAGS)
-
+#futex.o: futex.cc
+#      $(CXX) -fPIC -c futex.cc -std=c++11 $(CPPFLAGS)
 
 %.o : %.cc
        $(CXX) -MMD -MF .$@.d -fPIC -c $< $(CPPFLAGS)