Browse Source

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

Chia-Che Tsai 6 years ago
parent
commit
468b33becd
1 changed files with 2 additions and 1 deletions
  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