f9d9fad369ded1bd610c569548ec435256ca7d77
[pcsx_rearmed.git] / deps / libchdr / deps / zstd-1.5.5 / tests / fuzz / seq_prod_fuzz_example / Makefile
1 # Copyright (c) Yann Collet, Meta Platforms, Inc.
2 # All rights reserved.
3 #
4 # This source code is licensed under both the BSD-style license (found in the
5 # LICENSE file in the root directory of this source tree) and the GPLv2 (found
6 # in the COPYING file in the root directory of this source tree).
7 # You may select, at your option, one of the above-listed licenses.
8
9 CC = clang
10 CFLAGS = -g -fno-omit-frame-pointer -fsanitize=undefined,address,fuzzer -I../ -I../../../lib/
11
12 .PHONY: default
13 default: example_seq_prod.o
14
15 example_seq_prod.o: example_seq_prod.c
16         $(CC) -c $(CFLAGS) $^ -o $@