Because we do not offer a shared library distribution of ACUCOBOL-GT on HP-UX 11.0 or before, customers who want to use the Java API feature need to create the shared library manually. To do so, follow these instructions:
SHAREDLIB_LDFLAGS = -s +b $(ACUVERSPATH)/lib:$(ACUPATH)/lib:.:../stdlib:/usr/lib:/lib libruncbl.sl: amain.o $(SUBS) ld -b $(SHAREDLIB_LDFLAGS) -o libruncbl.sl amain.o $(SUBS) \ $(RUNTIME_LIB) $(LIBS) $(SYS_LIBS)
This creates a file named "libruncbl.sl" that can be loaded by the CVM class when calling COBOL from Java. You can also add "libruncbl.sl" to the "clean" target so that "make clean" will remove "libruncbl.sl".