aboutsummaryrefslogtreecommitdiffstats
path: root/src/native/libjunbound/makefile.w64
diff options
context:
space:
mode:
authorWolfgang Wiedmeyer <wolfgit@wiedmeyer.de>2017-03-11 22:15:03 +0100
committerWolfgang Wiedmeyer <wolfgit@wiedmeyer.de>2017-03-11 22:15:03 +0100
commit85901329b0794b136b96bf745f4ab1572806fc89 (patch)
treef23da7e97cae727f39d825f0fef8348cffb238e4 /src/native/libjunbound/makefile.w64
parent3db2e44f186c59429901b2c899e139ea60117a55 (diff)
parentcf5da997da8820b4050f5b87ee9440a0ede36d1f (diff)
downloadjitsi-master.zip
jitsi-master.tar.gz
jitsi-master.tar.bz2
Merge commit 'cf5da99'HEADmaster
Signed-off-by: Wolfgang Wiedmeyer <wolfgit@wiedmeyer.de>
Diffstat (limited to 'src/native/libjunbound/makefile.w64')
-rw-r--r--src/native/libjunbound/makefile.w6426
1 files changed, 0 insertions, 26 deletions
diff --git a/src/native/libjunbound/makefile.w64 b/src/native/libjunbound/makefile.w64
deleted file mode 100644
index c3865f4..0000000
--- a/src/native/libjunbound/makefile.w64
+++ /dev/null
@@ -1,26 +0,0 @@
-CC = g++ -O2
-TARGET_BASENAME = junbound.dll
-TARGET_DIR ?= ../../../lib/native/windows-64
-JAVA_HOME = C:/Program Files/Java/jdk6
-
-ifeq ($(wildcard /bin/cygpath.*),/bin/cygpath.exe)
- target.dir := $(shell cygpath --mixed "$(TARGET_DIR)")
- cygwin.target.dir := $(shell cygpath --unix "$(TARGET_DIR)")
-else
- target.dir := "$(TARGET_DIR)"
- cygwin.target.dir := "$(TARGET_DIR)"
-endif
-
-CPPFLAGS = \
- -Wall -Wreturn-type \
- -DWINVER=0x0502 -D_WIN32_WINNT=0x0502 \
- -DJNI_IMPLEMENTATION \
- -I"$(JAVA_HOME)/include" -I"$(JAVA_HOME)/include/win32" -Iwindows64
-
-LDFLAGS = -shared -static -Wl,--kill-at -Wl,--subsystem,windows
-LIBS = -Lwindows64 -lunbound -lldns -lcrypto -lws2_32 -lgdi32 -liphlpapi
-TARGET = $(TARGET_DIR)/$(TARGET_BASENAME)
-
-$(TARGET): src/*.cpp
- $(CC) $(CPPFLAGS) $^ $(LDFLAGS) -o $@ $(LIBS)
- -strip $(TARGET)