home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 39 / IOPROG_39.ISO / SOFT / sdkjava40.exe / data1.cab / fg_Samples / Samples / DirectX / dsound / MAKEFILE < prev    next >
Encoding:
Text File  |  2000-05-04  |  1.4 KB  |  37 lines

  1. # ----------------------------------------------------------------------------
  2. # Standard Microsoft SDK for Java MAKEFILE for Samples
  3. # ----------------------------------------------------------------------------
  4.  
  5. ROOT = ..\..
  6.  
  7. # ----------------------------------------------------------------------------
  8. # Tools
  9. # ----------------------------------------------------------------------------
  10.  
  11. JVCATTR = jvc.exe -nologo -nomessage -x- 
  12.  
  13. # ----------------------------------------------------------------------------
  14. # Set destination directory.
  15. # ----------------------------------------------------------------------------
  16.  
  17. DEST_DIR= .
  18.  
  19. # ----------------------------------------------------------------------------
  20. #
  21. # ----------------------------------------------------------------------------
  22.  
  23. all: 
  24.     $(JVCATTR) -d $(DEST_DIR) *.java
  25.     dubuild dsj.cab . /D "Sound" /N "Sound" /I *.class /V 1,0,0,0
  26.     makecert -sk MyKeyName -n "CN=Microsoft Corporation" MyTestCert.cer
  27.     cert2spc MyTestCert.cer MyTestCert.spc
  28.     signcode -j javasign.dll -jp low -spc MyTestCert.spc -k MyKeyName dsj.cab 
  29.     setreg
  30.     @echo make sure the trust the test root is true.  (setreg 1 true)
  31.     @echo when you are done testing, you should disable the test root.  (setreg 1 false)
  32.  
  33. # ----------------------------------------------------------------------------
  34. # Dependencies
  35. # ----------------------------------------------------------------------------
  36.  
  37.