Project

General

Profile

« Previous | Next » 

Revision 375

Makefile: Added targets to run input targets on all inputs

View differences:

Makefile
175 175

  
176 176
inputs := $(wildcard inputs/*/)
177 177

  
178
inputs: _not_file $(inputs:%=%install)
178
inputs: _not_file $(addsuffix install,$(inputs))
179 179

  
180
rm_inputs: _not_file $(inputs:%=%uninstall)
180
rm_inputs: _not_file $(addsuffix uninstall,$(inputs))
181 181

  
182
verify: _not_file $(addsuffix verify,$(inputs))
183

  
184
test2: _not_file $(addsuffix test,$(inputs))
185

  
182 186
inputs/%: _not_file
183
	-$(subMake)
187
	+$(subMake)
184 188
# ignore errors in sub-makes
185 189

  
186 190
#####

Also available in: Unified diff