aboutsummaryrefslogtreecommitdiff
path: root/flow-native/common.mk
diff options
context:
space:
mode:
Diffstat (limited to 'flow-native/common.mk')
-rw-r--r--flow-native/common.mk45
1 files changed, 0 insertions, 45 deletions
diff --git a/flow-native/common.mk b/flow-native/common.mk
deleted file mode 100644
index f80afa7..0000000
--- a/flow-native/common.mk
+++ /dev/null
@@ -1,45 +0,0 @@
-# Common settings for flow native build
-# =====================================
-
-# Name of the library to produce
-#
-NAME=flow
-
-
-# Library versions
-#
-MAJOR=3# public API changes
-MINOR=0# backwards-compatible changes
-MICRO=0# bugfixes
-
-
-# Directory where the library will be installed (without /lib)
-#
-PREFIX?=/usr/lib/jni
-
-
-# Compiler and linker settings
-#
-# Set CROSS_COMPILE to a gcc triplet
-# when cross-compiling
-#
-CC?=$(CROSS_COMPILE)gcc
-LD?=$(CROSS_COMPILE)ld
-CFLAGS+= -O2 -fPIC -Wall
-
-
-# JNI include directory
-#
-JNI_INCLUDE?=$(JAVA_HOME)/include
-
-
-# Include directories
-#
-INCLUDES=./include
-
-
-# Objects that will be compiled from respective .c files
-#
-OBJECTS=flow_jni.o posix/flow.o
-
-