home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgLangD.iso / VCAFE.3.0A / Sample.bin / hello2.mak < prev    next >
Text File  |  1997-09-08  |  934b  |  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 = hello2
  17.  
  18. !include ..\make.defs
  19.  
  20. SRCS = \
  21.         src\samples\staticDLL\Hello2.java
  22.  
  23. JC_EXTRA_FLAGS = -d out -classpath src;out;$(RUNTIME_CLASSES) -export "samples.staticDLL.*"
  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\staticDLL\*.class
  33.         del out\samples\staticDLL\*.obj
  34.         del hello2.cdb
  35.         del hello2.dll
  36.         del hello2.lib
  37.         del hello2.tdb
  38.         del hello2.map
  39.  
  40.  
  41. !endif