From e4ef704ae20e8ba22d38e08394b5c8e412081ab4 Mon Sep 17 00:00:00 2001 From: Marshall Lochbaum Date: Sun, 22 May 2022 11:27:13 -0400 Subject: Add optional support for C-based filter computation --- makefile | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 makefile (limited to 'makefile') diff --git a/makefile b/makefile new file mode 100644 index 0000000..e8c7e82 --- /dev/null +++ b/makefile @@ -0,0 +1,6 @@ +CFLAGS = -O3 -fPIC -ffast-math -march=native +FLAGS = -shared +TARGET = lib.so + +$(TARGET): lib.c + cc lib.c $(CFLAGS) $(FLAGS) -o $(TARGET) -- cgit v1.2.3