home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgLangD.iso / VCAFE.3.0A / Sample.bin / jmscale.mak < prev    next >
Text File  |  1997-09-08  |  972b  |  41 lines

  1. !if !defined( build )
  2. default :
  3.     @echo You must specify a debug or release build.  Do so with
  4.     @echo either build=debug or build=release.
  5.     @echo You can delete compiler output with
  6.     @echo make build=debug clean
  7.     @echo or
  8.     @echo make build=release clean
  9.     @echo You can rebuild everything with
  10.     @echo make build=debug all
  11.     @echo or
  12.     @echo make build=release all
  13.  
  14. !else
  15.  
  16. MODULE = jmscale
  17.  
  18. !include ..\..\make.defs
  19.  
  20. SRCS = \
  21.         src\samples\conversion\JmScale.java
  22.  
  23. JC_EXTRA_FLAGS = -d out -classpath src;out;$(RUNTIME_CLASSES) -export "samples.conversion.*" snjawt.lib symbeans.lib
  24.  
  25. default :
  26.         $(JC) $(SRCS) $(JC_FLAGS) $(DLL_LINK)  $(JC_EXTRA_FLAGS)
  27.  
  28. all : clean default
  29.  
  30.  
  31. clean :
  32.         del out\samples\conversion\*.class
  33.         del out\samples\conversion\*.obj
  34.         del jmscale.cdb
  35.         del jmscale.dll
  36.         del jmscale.lib
  37.         del jmscale.tdb
  38.         del jmscale.map
  39.  
  40.  
  41. !endif