소스 검색

[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)