mirror of https://github.com/openXC7/prjxray.git
quick.mk: option to run fuzzers only
Signed-off-by: John McMaster <johndmcmaster@gmail.com>
This commit is contained in:
parent
b0b9095b39
commit
30069f3504
|
|
@ -1,5 +1,7 @@
|
|||
# Intended for CIT quick checks
|
||||
|
||||
FUZZONLY=N
|
||||
|
||||
define fuzzer
|
||||
all:: $(1)/run.ok
|
||||
clean::
|
||||
|
|
@ -8,8 +10,11 @@ $(1)/run.ok: $(addsuffix /run.ok,$(2))
|
|||
$$(MAKE) -C $(1) run
|
||||
endef
|
||||
|
||||
ifneq ($(FUZZONLY),Y)
|
||||
$(eval $(call fuzzer,001-part-yaml,))
|
||||
$(eval $(call fuzzer,005-tilegrid,001-part-yaml))
|
||||
endif
|
||||
|
||||
$(eval $(call fuzzer,010-lutinit,005-tilegrid))
|
||||
$(eval $(call fuzzer,011-ffconfig,005-tilegrid))
|
||||
$(eval $(call fuzzer,012-clbn5ffmux,005-tilegrid))
|
||||
|
|
|
|||
Loading…
Reference in New Issue