From d2f8494679d387b6804fe20c193e872360b8aa48 Mon Sep 17 00:00:00 2001 From: = <=> Date: Mon, 27 Nov 2023 16:43:56 +0100 Subject: [PATCH] prepare BPF high level compiler --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 98b30ac81..7697b2575 100644 --- a/Makefile +++ b/Makefile @@ -17,12 +17,15 @@ HOSTOS := $(shell uname -s) CC ?= gcc CFLAGS ?= -O3 -Wall -Wextra -Wpedantic CFLAGS += -std=gnu99 +# uncomment to enable debug mode #CFLAGS += -ggdb -fsanitize=address DEFS = -DVERSION_TAG=\"$(VERSION_TAG)\" -DVERSION_YEAR=\"$(VERSION_YEAR)\" # comment to disable GPS support DEFS += -DNMEAOUT # comment to disable STATUS display (headless operation) DEFS += -DSTATUSOUT +# uncomment to enable BPF high level compiler +#DEFS += -DWANTLIBPCAP INSTALL ?= install INSTFLAGS =