File: rules

package info (click to toggle)
junixsocket 2.0.4-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 380 kB
  • sloc: java: 1,988; ansic: 516; xml: 454; makefile: 23
file content (34 lines) | stat: -rwxr-xr-x 941 bytes parent folder | download | duplicates (2)
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
#!/usr/bin/make -f

export JAVA_HOME=/usr/lib/jvm/default-java

DPKG_EXPORT_BUILDFLAGS = 1
include /usr/share/dpkg/default.mk

export DEB_BUILD_MAINT_OPTIONS=hardening=+all

%:
	dh $@

override_dh_auto_build-indep:
	dh_auto_build -- package -DskipTests -Pwith-native

override_dh_auto_build-arch:
	# Build the JNI bindings
	mkdir -p junixsocket-native/target
	gcc $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) \
	    -I$(JAVA_HOME)/include \
	    -I$(JAVA_HOME)/include/linux \
	    -fPIC -shared -Wall -g \
	    -Wno-long-long -Wpointer-arith -Wconversion \
	    -DLinux -DGNU_GCC \
	    junixsocket-native/src/main/c/org_newsclub_net_unix_NativeUnixSocket.c \
	    -o junixsocket-native/target/libjunixsocket-native.system.so

override_dh_auto_test-arch:

override_dh_auto_install-indep:
	dh_auto_install -- -Pwith-native

override_dh_auto_install-arch:
	dh_install -plibjunixsocket-jni junixsocket-native/target/*.so usr/lib/$(DEB_HOST_MULTIARCH)/jni