aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-05-14 02:33:25 +0000
committerDavid Robillard <d@drobilla.net>2011-05-14 02:33:25 +0000
commit38711dac60e60151d5031c2f823e5a3e11048e8c (patch)
treeca69c455a677765743c0bd0460ccfd426eeb3fa2
parentc13b41d2e2dcbbe52f38aa9b12b495a4e2265a05 (diff)
downloadresp-38711dac60e60151d5031c2f823e5a3e11048e8c.tar.gz
resp-38711dac60e60151d5031c2f823e5a3e11048e8c.tar.bz2
resp-38711dac60e60151d5031c2f823e5a3e11048e8c.zip
Disable compilation of rotting C backend.
git-svn-id: http://svn.drobilla.net/resp/trunk@414 ad02d1e2-f140-0410-9f75-f8b11f17cedd
-rw-r--r--Makefile3
-rw-r--r--src/resp.cpp4
2 files changed, 4 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 7678e1a..059967c 100644
--- a/Makefile
+++ b/Makefile
@@ -21,8 +21,9 @@ all: builddir build/resp
builddir:
mkdir -p build
+#build/c.o
+
OBJECTS = \
- build/c.o \
build/compile.o \
build/constrain.o \
build/cps.o \
diff --git a/src/resp.cpp b/src/resp.cpp
index e2f5a49..0774399 100644
--- a/src/resp.cpp
+++ b/src/resp.cpp
@@ -126,8 +126,8 @@ main(int argc, char** argv)
if (backend_name == "llvm")
engine = resp_new_llvm_engine();
- else if (backend_name == "c")
- engine = resp_new_c_engine();
+ //else if (backend_name == "c")
+ // engine = resp_new_c_engine();
if (!engine) {
std::cerr << "Unable to open backend " << backend_name << std::endl;