aboutsummaryrefslogblamecommitdiff
path: root/flow-native/common.mk
blob: f80afa7a159e10cbe65ebfdb4163e5df7a5cad8d (plain) (tree)
1
2
3
4
5
6
7
8
9
10




                                       
         



                  
                           



                                     
                                                              
 
                    






                                    


                        

 
                       
 
                                 



                     
                  






                                                        
# 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