diff options
author | Alice Frosi <afrosi@redhat.com> | 2022-12-21 14:48:37 +0100 |
---|---|---|
committer | Alice Frosi <afrosi@redhat.com> | 2022-12-21 14:48:37 +0100 |
commit | b8989e6bc221c7273ad70e2361a4f0457422cebe (patch) | |
tree | ee4cbe834c7bb8e1f6e961924e243fee7301f69c | |
parent | 49d2d37856368fe6bae685bdbb13029ad4803762 (diff) | |
download | seitan-b8989e6bc221c7273ad70e2361a4f0457422cebe.tar seitan-b8989e6bc221c7273ad70e2361a4f0457422cebe.tar.gz seitan-b8989e6bc221c7273ad70e2361a4f0457422cebe.tar.bz2 seitan-b8989e6bc221c7273ad70e2361a4f0457422cebe.tar.lz seitan-b8989e6bc221c7273ad70e2361a4f0457422cebe.tar.xz seitan-b8989e6bc221c7273ad70e2361a4f0457422cebe.tar.zst seitan-b8989e6bc221c7273ad70e2361a4f0457422cebe.zip |
Remove unecessary flags
The flags aren't necessary anymore as the filter is built at runtime.
Signed-off-by: Alice Frosi <afrosi@redhat.com>
-rw-r--r-- | Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -8,10 +8,8 @@ AUDIT_ARCH := $(shell echo $(AUDIT_ARCH) | sed 's/I[456]86/I386/') AUDIT_ARCH := $(shell echo $(AUDIT_ARCH) | sed 's/PPC64/PPC/') AUDIT_ARCH := $(shell echo $(AUDIT_ARCH) | sed 's/PPCLE/PPC64LE/') -CFLAGS += -DBUILD_TRANSFORM_OUT=\"t.out\" -DBUILD_BPF_OUT=\"bpf.out\" -CFLAGS += -DBUILD_IN=\"qemu_filter\" +CFLAGS += -DBUILD_TRANSFORM_OUT=\"t.out\" CFLAGS += -DSEITAN_AUDIT_ARCH=AUDIT_ARCH_$(AUDIT_ARCH) -CFLAGS += -DBUILD_PROFILE=qemu_filter CFLAGS += -Wall -Wextra -pedantic all: bpf.out t.out seitan-loader seitan |