Merge pull request #594 from mithro/fix-make-include

fuzzers: Fix including Makefiles.
This commit is contained in:
litghost 2019-01-31 18:33:32 -08:00 committed by GitHub
commit 931576a770
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 2 deletions

View File

@ -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

View File

@ -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)