aboutsummaryrefslogtreecommitdiffstats
path: root/src/native/libjunbound/makefile.linux
diff options
context:
space:
mode:
Diffstat (limited to 'src/native/libjunbound/makefile.linux')
-rw-r--r--src/native/libjunbound/makefile.linux16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/native/libjunbound/makefile.linux b/src/native/libjunbound/makefile.linux
deleted file mode 100644
index f4e2124..0000000
--- a/src/native/libjunbound/makefile.linux
+++ /dev/null
@@ -1,16 +0,0 @@
-CC = g++ -O2
-TARGET_BASENAME = libjunbound.so
-
-CPPFLAGS = \
- -Wall -Wreturn-type \
- -fpic \
- -DJNI_IMPLEMENTATION \
- -I/usr/lib/jvm/java-6-openjdk/include
-
-LDFLAGS = -shared
-LIBS = -lunbound
-TARGET = $(TARGET_BASENAME)
-
-$(TARGET): src/*.cpp
- $(CC) $(CPPFLAGS) $^ $(LDFLAGS) -o $@ $(LIBS)
- -strip $(TARGET)