mirror of https://github.com/openXC7/prjxray.git
Fixes in fuzzers top-level Makefile, Update README
Signed-off-by: Clifford Wolf <clifford@clifford.at>
This commit is contained in:
parent
00817c5319
commit
a80b80c63d
|
|
@ -45,10 +45,15 @@ Creating HTML documentation:
|
|||
cd htmlgen
|
||||
python3 htmlgen.py
|
||||
|
||||
(Re-)creating the database:
|
||||
|
||||
cd fuzzers
|
||||
make -j$(nproc)
|
||||
|
||||
(Re-)creating parts of the database, for example LUT init bits:
|
||||
|
||||
cd fuzzers/010-lutinit
|
||||
make
|
||||
make -j$(nproc) run
|
||||
|
||||
|
||||
# Process
|
||||
|
|
|
|||
|
|
@ -1,13 +1,13 @@
|
|||
define fuzzer
|
||||
all:: $(1)/run.ok
|
||||
clean::
|
||||
$(MAKE) -C $(1) clean
|
||||
$$(MAKE) -C $(1) clean
|
||||
$(1)/run.ok: $(addsuffix /run.ok,$(2))
|
||||
$(MAKE) -C $(1) run
|
||||
$$(MAKE) -C $(1) run
|
||||
endef
|
||||
|
||||
$(eval $(call fuzzer,001-part-yaml,))
|
||||
$(eval $(call fuzzer,005-tilegrid,))
|
||||
$(eval $(call fuzzer,005-tilegrid,001-part-yaml))
|
||||
$(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