Procházet zdrojové kódy

[LibOS] Use implicit pattern rule in benchmark/Makefile

Static pattern rule isn't needed in benchmark/Makefile.
Isaku Yamahata před 4 roky
rodič
revize
1089dd015e
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  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)