Merge pull request #411 from mcmasterg/bitonly

BITONLY
This commit is contained in:
John McMaster 2018-12-27 12:30:35 -08:00 committed by GitHub
commit a1271925f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -4,6 +4,9 @@ QUICK=N
# Skip metadata steps like tile and part generation
# Ex: FUZZONLY=N: 30 min, FUZZONLY=Y: 6 min
FUZZONLY=N
# 074 fuzzer isn't changed often and is slow
# Allow building without it
BITONLY=N
define fuzzer
all:: $(1)/run.ok
@ -44,10 +47,12 @@ $(eval $(call fuzzer,057-bipips,056-rempips))
ifneq ($(QUICK),Y)
$(eval $(call fuzzer,058-hclkpips,056-rempips))
$(eval $(call fuzzer,071-ppips,057-bipips 058-hclkpips))
ifneq ($(BITONLY),Y)
$(eval $(call fuzzer,072-ordered_wires,))
$(eval $(call fuzzer,073-get_counts,))
$(eval $(call fuzzer,074-dump_all,072-ordered_wires))
endif
endif
$(eval $(call fuzzer,100-dsp-mskpat,005-tilegrid))
quick: