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 9CC = clang 10CFLAGS = -g -fno-omit-frame-pointer -fsanitize=undefined,address,fuzzer -I../ -I../../../lib/ 11 12.PHONY: default 13default: example_seq_prod.o 14 15example_seq_prod.o: example_seq_prod.c 16 $(CC) -c $(CFLAGS) $^ -o $@ 17