mirror of https://github.com/openXC7/prjxray.git
fuzzers: Fix including Makefiles.
Fixes #593. Signed-off-by: Tim 'mithro' Ansell <me@mith.ro>
This commit is contained in:
parent
32d0d56f78
commit
93ffa6f827
|
|
@ -1,3 +1,5 @@
|
||||||
|
SELF_DIR := $(dir $(lastword $(MAKEFILE_LIST)))
|
||||||
|
|
||||||
N ?= 1
|
N ?= 1
|
||||||
CLB_DBFIXUP ?=
|
CLB_DBFIXUP ?=
|
||||||
# Fuzzer that can accept SLICEL data
|
# Fuzzer that can accept SLICEL data
|
||||||
|
|
@ -15,7 +17,7 @@ ITER ?= 0
|
||||||
MAX_ITER ?= 10
|
MAX_ITER ?= 10
|
||||||
FUZDIR = ${PWD}
|
FUZDIR = ${PWD}
|
||||||
|
|
||||||
include ../fuzzer.mk
|
include $(SELF_DIR)/fuzzer.mk
|
||||||
|
|
||||||
database: build/segbits_clbx.db
|
database: build/segbits_clbx.db
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,5 @@
|
||||||
include pip_loop.mk
|
SELF_DIR := $(dir $(lastword $(MAKEFILE_LIST)))
|
||||||
|
include $(SELF_DIR)/pip_loop.mk
|
||||||
|
|
||||||
# Specimens from current run must complete, but previous iterations may exist
|
# Specimens from current run must complete, but previous iterations may exist
|
||||||
database: $(SPECIMENS_OK)
|
database: $(SPECIMENS_OK)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue