From: weiyu Date: Mon, 24 Jun 2019 19:42:46 +0000 (-0700) Subject: add a separate rule for futex.o X-Git-Url: http://plrg.eecs.uci.edu/git/?p=c11tester.git;a=commitdiff_plain;h=a11fe305a03ad8eee80e476230b200cac11f59e3 add a separate rule for futex.o --- diff --git a/Makefile b/Makefile index b62e72a9..72b2f526 100644 --- a/Makefile +++ b/Makefile @@ -36,6 +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) %.o : %.cc $(CXX) -MMD -MF .$@.d -fPIC -c $< $(CPPFLAGS)