build.sh 590 B

12345678910111213141516171819202122232425
  1. #!/bin/sh
  2. #
  3. # Licensed Materials - Property of IBM
  4. #
  5. # IBM Cognos Products: CAMAAA
  6. #
  7. # (C) Copyright IBM Corp. 2005, 2016
  8. #
  9. # US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with
  10. # IBM Corp.
  11. #
  12. # Build Java files in directory JDBCSample
  13. echo Building JDBCSample
  14. # Build the CLASSPATH required to build the Java samples
  15. _CLASSPATH=../lib/CAM_AAA_CustomIF.jar:../adapters
  16. # Compile
  17. javac -classpath "$_CLASSPATH" -d . -source 7 -target 7 *.java
  18. # Create jar file
  19. jar cfm0 CAM_AAA_JDBCSample.jar MANIFEST *.class
  20. echo done