Marvin Preuss
1d4ae27878
All checks were successful
continuous-integration/drone/push Build is passing
19 lines
282 B
Makefile
19 lines
282 B
Makefile
PACKAGE = github.com/cavaliercoder/go-cpio
|
|
|
|
all: check
|
|
|
|
check:
|
|
go test -v
|
|
|
|
cpio-fuzz.zip: *.go
|
|
go-fuzz-build $(PACKAGE)
|
|
|
|
fuzz: cpio-fuzz.zip
|
|
go-fuzz -bin=./cpio-fuzz.zip -workdir=.fuzz/
|
|
|
|
clean-fuzz:
|
|
rm -rf cpio-fuzz.zip .fuzz/crashers/* .fuzz/suppressions/*
|
|
|
|
|
|
.PHONY: all check
|