/
githubmirror
/
zstd
Обзор
Документация
Войти
/
githubmirror
/
zstd
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
tests/fuzz/seq_prod_fuzz_example/Makefile
16 строк
586 B
Elliot Gorokhovsky
Provide an interface for fuzzing sequence producer plugins
28 мар 2023, 22:02
28 мар 2023, 22:02
a810e1e
Код
Авторство
О чём код?
# Copyright (c) Yann Collet, Meta Platforms, Inc. # All rights reserved. # # This source code is licensed under both the BSD-style license (found in the # LICENSE file in the root directory of this source tree) and the GPLv2 (found # in the COPYING file in the root directory of this source tree). # You may select, at your option, one of the above-listed licenses. CC = clang CFLAGS = -g -fno-omit-frame-pointer -fsanitize=undefined,address,fuzzer -I../ -I../../../lib/ .PHONY: default default: example_seq_prod.o example_seq_prod.o: example_seq_prod.c $(CC) -c $(CFLAGS) $^ -o $@