Browse Source

[LibOS] Use implicit pattern rule in benchmark/Makefile

Static pattern rule isn't needed in benchmark/Makefile.
Isaku Yamahata 4 years ago
parent
commit
1089dd015e
1 changed files with 2 additions and 2 deletions
  1. 2 2
      LibOS/shim/test/benchmark/Makefile

+ 2 - 2
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)