浏览代码

[LibOS] Use implicit pattern rule in native/Makefile

Static pattern rule isn't needed in native/Makefile.
Isaku Yamahata 6 年之前
父节点
当前提交
aef0f4ab64
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      LibOS/shim/test/native/Makefile

+ 2 - 2
LibOS/shim/test/native/Makefile

@@ -25,10 +25,10 @@ LDLIBS-start.pthread.m += -lpthread -lm
 LDLIBS-sync.pthread += -lpthread
 LDLIBS-test_start_pthread_m.m += -lm
 
-$(c_executables): %: %.c
+%: %.c
 	$(call cmd,csingle)
 
-$(cxx_executables): %: %.cpp
+%: %.cpp
 	$(call cmd,cxxsingle)
 
 include $(wildcard *.d)