mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
Tests: Update OSS-Fuzz Makefile.
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.
This commit is contained in:
parent
28ce6a1c2a
commit
37581a77ad
1 changed files with 9 additions and 4 deletions
|
@ -1,7 +1,12 @@
|
|||
fuzz: fuzz.c
|
||||
$(CC) $(CFLAGS) -c fuzz.c -I ../../src/liblzma/api/
|
||||
$(CXX) $(CXXFLAGS) $(LIB_FUZZING_ENGINE) fuzz.o -o $(OUT)/fuzz \
|
||||
../../src/liblzma/.libs/liblzma.a
|
||||
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
|
||||
|
|
Loading…
Reference in a new issue