1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
Author: Andreas Tille <tille@debian.org>
Last-Update: 2019-03-25
Description: Enable debug symbols
--- a/jni/makefile.linux
+++ b/jni/makefile.linux
@@ -1,7 +1,7 @@
CC=gcc
INCS=-I"$(JAVA_HOME)/include" -I"$(JAVA_HOME)/include/linux"
-CFLAGS=-O3 -Wall -std=c99 -fPIC
-LDFLAGS=-O3 -Wall -std=c99 -fPIC -shared
+CFLAGS+=-O3 -Wall -std=c99 -fPIC
+LDFLAGS+=-O3 -Wall -std=c99 -fPIC -shared
OBJ=BandedAlignerJNI.o MultiStateAligner11tsJNI.o BBMergeOverlapper.o IceCreamAlignerJNI.o
%.o: %.c
|