From 472e52a8c3eab2a5589bda8acaa79cb4f8c45e2a Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Tue, 9 Aug 2022 15:55:21 +0200 Subject: [PATCH] Remove old `c-operator` example, which is now merged into `c-dataflow` --- examples/c-operator/.gitignore | 3 --- examples/c-operator/README.md | 9 --------- 2 files changed, 12 deletions(-) delete mode 100644 examples/c-operator/.gitignore delete mode 100644 examples/c-operator/README.md diff --git a/examples/c-operator/.gitignore b/examples/c-operator/.gitignore deleted file mode 100644 index 4eba6870..00000000 --- a/examples/c-operator/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -operator.o -operator.so -api.h diff --git a/examples/c-operator/README.md b/examples/c-operator/README.md deleted file mode 100644 index 7f92d018..00000000 --- a/examples/c-operator/README.md +++ /dev/null @@ -1,9 +0,0 @@ -# C-operator Example - -Build with these steps: - -```bash -cp ../../apis/c/operator/operator_api.h . -clang -c operator.c -clang -shared -v operator.o -o operator.so -```