10 lines
320 B
Makefile
10 lines
320 B
Makefile
# At the moment the fuzzer only exists in stage1.
|
|
|
|
FUZZER_CRATE := $(S)src/fuzzer/fuzzer.rc
|
|
FUZZER_INPUTS := $(wildcard $(addprefix $(S)src/fuzzer/, *.rs))
|
|
|
|
stage1/fuzzer$(X): $(FUZZER_CRATE) $(FUZZER_INPUTS) $(SREQ1) \
|
|
stage1/lib/$(CFG_LIBRUSTC)
|
|
@$(call E, compile_and_link: $@)
|
|
$(STAGE1) -o $@ $<
|