소스 검색

[LibOS] Include Makefile.{config, rule} in test/*/Makefile

Isaku Yamahata 6 년 전
부모
커밋
fa2ed00153
5개의 변경된 파일10개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      LibOS/shim/test/benchmark/Makefile
  2. 2 0
      LibOS/shim/test/fs/Makefile
  3. 2 0
      LibOS/shim/test/inline/Makefile
  4. 2 0
      LibOS/shim/test/native/Makefile
  5. 2 0
      LibOS/shim/test/regression/Makefile

+ 2 - 0
LibOS/shim/test/benchmark/Makefile

@@ -4,6 +4,8 @@ cxx_executables = $(patsubst %.cpp,%,$(wildcard *.cpp))
 exec_target = $(c_executables) $(cxx_executables)
 exec_target = $(c_executables) $(cxx_executables)
 target = $(exec_target) manifest
 target = $(exec_target) manifest
 
 
+include ../../../../Scripts/Makefile.configs
+include ../../../../Scripts/Makefile.manifest
 include ../../../../Scripts/Makefile.Test
 include ../../../../Scripts/Makefile.Test
 
 
 ifeq ($(findstring x86_64,$(SYS))$(findstring linux,$(SYS)),x86_64linux)
 ifeq ($(findstring x86_64,$(SYS))$(findstring linux,$(SYS)),x86_64linux)

+ 2 - 0
LibOS/shim/test/fs/Makefile

@@ -10,6 +10,8 @@ clean-extra += clean-tmp
 .PHONY: default
 .PHONY: default
 default: all
 default: all
 
 
+include ../../../../Scripts/Makefile.configs
+include ../../../../Scripts/Makefile.manifest
 include ../../../../Scripts/Makefile.Test
 include ../../../../Scripts/Makefile.Test
 
 
 ifeq ($(findstring x86_64,$(SYS))$(findstring linux,$(SYS)),x86_64linux)
 ifeq ($(findstring x86_64,$(SYS))$(findstring linux,$(SYS)),x86_64linux)

+ 2 - 0
LibOS/shim/test/inline/Makefile

@@ -7,6 +7,8 @@ target = $(c_executables) $(cxx_executables) manifest
 .PHONY: default
 .PHONY: default
 default: all
 default: all
 
 
+include ../../../../Scripts/Makefile.configs
+include ../../../../Scripts/Makefile.manifest
 include ../../../../Scripts/Makefile.Test
 include ../../../../Scripts/Makefile.Test
 
 
 .PHONY: crt_init-recurse
 .PHONY: crt_init-recurse

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

@@ -5,6 +5,8 @@ manifests = $(patsubst %.template,%,$(wildcard *.manifest.template)) manifest
 exec_target = $(c_executables) $(cxx_executables) ls.manifest
 exec_target = $(c_executables) $(cxx_executables) ls.manifest
 target = $(exec_target) $(manifests)
 target = $(exec_target) $(manifests)
 
 
+include ../../../../Scripts/Makefile.configs
+include ../../../../Scripts/Makefile.manifest
 include ../../../../Scripts/Makefile.Test
 include ../../../../Scripts/Makefile.Test
 
 
 ifeq ($(findstring x86_64,$(SYS))$(findstring linux,$(SYS)),x86_64linux)
 ifeq ($(findstring x86_64,$(SYS))$(findstring linux,$(SYS)),x86_64linux)

+ 2 - 0
LibOS/shim/test/regression/Makefile

@@ -10,6 +10,8 @@ clean-extra += clean-tmp
 .PHONY: default
 .PHONY: default
 default: all
 default: all
 
 
+include ../../../../Scripts/Makefile.configs
+include ../../../../Scripts/Makefile.manifest
 include ../../../../Scripts/Makefile.Test
 include ../../../../Scripts/Makefile.Test
 
 
 ifeq ($(findstring x86_64,$(SYS))$(findstring linux,$(SYS)),x86_64linux)
 ifeq ($(findstring x86_64,$(SYS))$(findstring linux,$(SYS)),x86_64linux)