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

This commit is contained in:
Chia-Che Tsai
2017-12-07 08:44:16 -05:00
committed by Don Porter
parent 43c83914f1
commit aed2a52164
+2 -1
View File
@@ -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