소스 검색

[LibOS] Use implicit pattern rule in benchmark/Makefile

Static pattern rule isn't needed in benchmark/Makefile.
Isaku Yamahata 4 년 전
부모
커밋
1089dd015e
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  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)