• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# SPDX-License-Identifier: GPL-2.0
2CFLAGS += -D_FILE_OFFSET_BITS=64 -Wall -Werror -I../.. -I../../../../.. -fno-omit-frame-pointer -fsanitize=address -g
3LDLIBS := -llz4 -lzstd -lcrypto -lpthread -fsanitize=address
4TEST_GEN_PROGS := incfs_test incfs_stress incfs_perf
5
6include ../../lib.mk
7
8# Put after include ../../lib.mk since that changes $(TEST_GEN_PROGS)
9# Otherwise you get multiple targets, this becomes the default, and it's a mess
10EXTRA_SOURCES := utils.c
11$(TEST_GEN_PROGS) : $(EXTRA_SOURCES)
12