build.sh 780 B

12345678910111213141516171819202122232425262728
  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. # Copyright © 2008 Cognos ULC, an IBM Company. All Rights Reserved.
  13. # Cognos and the Cognos logo are trademarks of Cognos ULC (formerly Cognos Incorporated).
  14. #
  15. # Build Java files in directory TrustedSignonSample
  16. echo Building TrustedSignonSample
  17. # Build the CLASSPATH required to build the Java samples
  18. _CLASSPATH=../lib/CAM_AAA_CustomIF.jar:../adapters
  19. # Compile
  20. javac -classpath "$_CLASSPATH" -d . -source 7 -target 7 *.java
  21. # Create jar file
  22. jar cfm0 CAM_AAA_TrustedSignonSample.jar MANIFEST *.class
  23. echo done