mirror of https://github.com/openXC7/prjxray.git
Merge pull request #594 from mithro/fix-make-include
fuzzers: Fix including Makefiles.
This commit is contained in:
commit
931576a770
|
|
@ -1,3 +1,5 @@
|
|||
SELF_DIR := $(dir $(lastword $(MAKEFILE_LIST)))
|
||||
|
||||
N ?= 1
|
||||
CLB_DBFIXUP ?=
|
||||
# Fuzzer that can accept SLICEL data
|
||||
|
|
@ -15,7 +17,7 @@ ITER ?= 0
|
|||
MAX_ITER ?= 10
|
||||
FUZDIR = ${PWD}
|
||||
|
||||
include ../fuzzer.mk
|
||||
include $(SELF_DIR)/fuzzer.mk
|
||||
|
||||
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
|
||||
database: $(SPECIMENS_OK)
|
||||
|
|
|
|||
Loading…
Reference in New Issue