Browse Source

[LibOS] Use implicit pattern rule in native/Makefile

Static pattern rule isn't needed in native/Makefile.
Isaku Yamahata 4 years ago
parent
commit
aef0f4ab64
1 changed files with 2 additions and 2 deletions
  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)