瀏覽代碼

adding rules to build manifests in LibOS/shim/test/regression

Chia-Che Tsai 7 年之前
父節點
當前提交
468b33becd
共有 1 個文件被更改,包括 2 次插入1 次删除
  1. 2 1
      LibOS/shim/test/regression/Makefile

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

@@ -3,9 +3,10 @@ CFLAGS-libos = -L../../../build/libos -I../../include
 special_executables = bootstrap_static bootstrap_pie
 c_executables = $(filter-out $(special_executables),$(patsubst %.c,%,$(wildcard *.c)))
 cxx_executables = $(patsubst %.cpp,%,$(wildcard *.cpp))
+manifests = $(patsubst %.manifest.template,%.manifest,$(wildcard *.manifest.template)) manifest
 
 exec_target = $(special_executables) $(c_executables) $(cxx_executables)
-target = $(exec_target) manifest
+target = $(exec_target) $(manifests)
 
 clean-extra += clean-tmp