aboutsummaryrefslogtreecommitdiff
path: root/flow-native/Makefile
blob: fb973f3ca0313b00f39532f341cf744675ce66c0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Build native binaries for flow.
# ===============================

# name of the library to produce
NAME=flow
MAJOR=3
MINOR=0
MICRO=0

SONAME=lib$(NAME).so.$(MAJOR)
TARGET=$(SONAME).$(MINOR).$(MICRO)

JAVA_HOME=/usr/lib/jvm/java-7-oracle

# where the library should be installed
PREFIX?=usr/lib

# compiler and linker settings
CC=$(CROSS_COMPILE)gcc
LD=$(CROSS_COMPILE)ld
CFLAGS= -O2 -fPIC -Wall

# since java connot easily load a library with a specific
# major version, the vesion is included in the library's name

LDFLAGS+=-shared -Wl,-soname,$(SONAME)
INCLUDES=./include/ $(JAVA_HOME)/include/ $(JAVA_HOME)/include/linux/

OBJECTS=flow_jni.o posix/flow.o

# rules
all: $(TARGET) $(SONAME)

$(TARGET): $(OBJECTS)
	$(CC) $(LDFLAGS) -o $@ $^
	
$(SONAME): $(TARGET)
	ln -s $(TARGET) $(SONAME)

%.o: %.c
	$(CC) $(CFLAGS) $(addprefix -I, $(INCLUDES)) -o $@ -c $<

install:
	cp -P -t $(DESTDIR)/$(PREFIX)/ $(TARGET) $(SONAME)

uninstall:
	rm $(DESTDIR)/$(PREFIX)/$(TARGET)
	rm $(DESTDIR)/$(PREFIX)/$(SONAME)
	
clean:
	rm -f posix/*.o
	rm -f posix/*.so
	rm -f $(TARGET)
	rm -f $(SONAME)

.PHONY: clean install