JNI for test coverage #3965

This commit is contained in:
rusefillc 2022-02-26 15:39:01 -05:00
parent 24f25ba095
commit 1e413e6f4f
2 changed files with 3 additions and 4 deletions

View File

@ -80,7 +80,7 @@ VPATH = $(SRCPATHS)
# Makefile rules
#
all: $(OBJS) $(BINARY_OUTPUT) MAKE_ALL_RULE_HOOK
all: $(OBJS) $(BINARY_OUTPUT) $(SHARED_OUTPUT) MAKE_ALL_RULE_HOOK
MAKE_ALL_RULE_HOOK:
@ -143,7 +143,7 @@ endif
$(SHARED_OUTPUT): $(OBJS)
@echo Linking shared library $@
@$(LD) $(OBJS) $(LDFLAGS) $(LIBS) -o $@ -shared
@$(LD) $(OBJS) $(LDFLAGS) $(LIBS) -o $@.dll -shared
clean: CLEAN_RULE_HOOK
@echo Cleaning

View File

@ -132,8 +132,7 @@ OD = $(TRGT)objdump
HEX = $(CP) -O ihex
BIN = $(CP) -O binary
# ARM-specific options here
AOPT =
AOPT = -fPIC
# Define C warning options here
CWARN = -Wall -Wextra -Wstrict-prototypes -pedantic -Wmissing-prototypes -Wold-style-definition