aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/fuzz/Makefile
blob: 87a5dcd3eae6a64cf7a8db2b8de7d71fdb135614 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# SPDX-License-Identifier: GPL-2.0
#
# Copyright (C) 2018-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.

all: config

CFLAGS ?= -O3 -march=native -g
CFLAGS += -fsanitize=fuzzer -std=gnu11 -idirafter ../uapi

config: config.c ../config.c ../encoding.c
	clang $(CFLAGS) -o $@ $<

clean:
	rm -f config

.PHONY: all clean