home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 39 / IOPROG_39.ISO / SOFT / sdkjava40.exe / data1.cab / fg_Samples / Samples / Native / jexegen / stub / makefile next >
Encoding:
Makefile  |  2000-05-04  |  399 b   |  10 lines

  1. all :
  2. !if "$(CFG)" == "debug"
  3.          $(MAKE) /a /f "stub.mak" CFG="JView - Win32 Debug"
  4.      jvc -x- -nologo -nomessage Test\*.java
  5.     jexegen /bindto:debug\stub.exe /main:Test.Hello /base:. Test\*.class    
  6. !else
  7.          $(MAKE) /a /f "stub.mak" CFG="JView - Win32 Release"
  8.      jvc -x- -nologo -nomessage Test\*.java
  9.     jexegen /bindto:release\stub.exe /main:Test.Hello /base:. Test\*.class    
  10. !endif