Skip to content

Commit

Permalink
Fix src/ path in Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
bblanchon committed Sep 4, 2019
1 parent b47ac27 commit 4c4c468
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions extras/fuzzing/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# CAUTION: this file is invoked by https://github.com/google/oss-fuzz

CXXFLAGS += -I../src -DARDUINOJSON_DEBUG
CXXFLAGS += -I../../src -DARDUINOJSON_DEBUG

all: \
$(OUT)/json_fuzzer \
Expand All @@ -10,7 +10,7 @@ all: \
$(OUT)/msgpack_fuzzer_seed_corpus.zip \
$(OUT)/msgpack_fuzzer.options

$(OUT)/%_fuzzer: %_fuzzer.cpp $(shell find ../src -type f)
$(OUT)/%_fuzzer: %_fuzzer.cpp $(shell find ../../src -type f)
$(CXX) $(CXXFLAGS) $< -o$@ $(LIB_FUZZING_ENGINE)

$(OUT)/%_fuzzer_seed_corpus.zip: %_seed_corpus/*
Expand Down

0 comments on commit 4c4c468

Please sign in to comment.