From 1089dd015e4a83db60ff2a578518c29fa982cd41 Mon Sep 17 00:00:00 2001 From: Isaku Yamahata Date: Sun, 25 Aug 2019 12:00:56 -0700 Subject: [PATCH] [LibOS] Use implicit pattern rule in benchmark/Makefile Static pattern rule isn't needed in benchmark/Makefile. --- LibOS/shim/test/benchmark/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/LibOS/shim/test/benchmark/Makefile b/LibOS/shim/test/benchmark/Makefile index 9df39459..1341a4e8 100644 --- a/LibOS/shim/test/benchmark/Makefile +++ b/LibOS/shim/test/benchmark/Makefile @@ -21,10 +21,10 @@ LDLIBS-rpc_latency.libos += -llibos LDLIBS-rpc_latency2.libos += -llibos LDLIBS-test_start.m += -lm -$(c_executables): %: %.c +%: %.c $(call cmd,csingle) -$(cxx_executables): %: %.cpp +%: %.cpp $(call cmd,cxxsingle) else .IGNORE: $(c_executables) $(cxx_executables)