mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
37581a77ad
All .c files can be built as separate fuzz targets. This simplifies the Makefile by allowing us to use wildcards instead of having a Makefile target for each fuzz target.
12 lines
288 B
Makefile
12 lines
288 B
Makefile
FUZZ_TARGET_SRCS = $(wildcard *.c)
|
|
FUZZ_TARGET_BINS = $(FUZZ_TARGET_SRCS:.c=)
|
|
|
|
all: $(FUZZ_TARGET_BINS)
|
|
|
|
%: %.c
|
|
$(CC) $(CFLAGS) -c $< -I ../../src/liblzma/api/ ;
|
|
$(CXX) $(CXXFLAGS) $(LIB_FUZZING_ENGINE) $(<:.c=.o) -o $(OUT)/$@ \
|
|
../../src/liblzma/.libs/liblzma.a ;
|
|
|
|
clean:
|
|
rm -f *.o
|