From aed2a5216442a684f90e34a4c0366283f9b876bf Mon Sep 17 00:00:00 2001 From: Chia-Che Tsai Date: Thu, 7 Dec 2017 08:44:16 -0500 Subject: [PATCH] adding rules to build manifests in LibOS/shim/test/regression --- LibOS/shim/test/regression/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/LibOS/shim/test/regression/Makefile b/LibOS/shim/test/regression/Makefile index 71b37ccd..4acf927c 100644 --- a/LibOS/shim/test/regression/Makefile +++ b/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