home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 11 / 11.iso / m / m248 / 4.ddi / AWITOOLS._ / AWITOOLS.
Encoding:
Text File  |  1993-02-01  |  1.2 KB  |  72 lines

  1. #    
  2. #    AWITOOLS. -- Make File for AWITOOLS
  3. #    Copyright 1987-1991, Authorware, Inc.
  4. #
  5. #    Revision History
  6. #
  7. #        7/25/91    -    Initial version
  8.  
  9. all: awitools.exe
  10.  
  11. #
  12. # How to use this make file.
  13. #
  14. #    First You must be on the drive and in the directoy of this make file!!!!!!
  15. #    
  16. #    To make without debug information type:
  17. #
  18. #     nmake awitools
  19. #
  20. #    To make with debug information type:
  21. #
  22. #     nmake awitools "cvw="
  23. #
  24. #    This IS case sensitive so use lower case.
  25. #
  26. #    The optional -a flag may be used to force all targets to be
  27. #    created. For example:
  28. #
  29. #     nmake -a awitools
  30. #     nmake -a awitools "cvw="
  31. #
  32. #    This makefile was created and tested for verion 1.11 MS NMAKE utility
  33. #
  34.  
  35. !IFDEF cvw
  36.  
  37. cdebug = -Zpei
  38. ldebug = /NOE /NOD /CO
  39.  
  40. !ELSE
  41.  
  42. cdebug = -Zpe
  43. ldebug = /NOE /NOD
  44.  
  45. !ENDIF
  46.  
  47. c_flags = cl -c -AMw -Gsw -Od -W2 $(cdebug)
  48.  
  49. OBJS    =  awitools.obj libentry.obj
  50.  
  51. awitools.obj: awitools.c
  52.     $(c_flags) awitools.c 
  53.  
  54. libentry.obj: libentry.asm
  55.     masm -Mx libentry.asm,,;
  56.  
  57. awitools.res: awitools.rc
  58.     rc -r awitools.rc
  59.  
  60. awitools.exe: $(OBJS) awitools.def awitools.res
  61.     link @<<
  62. $(OBJS), 
  63. awitools.exe,
  64.  ,
  65. $(ldebug) mdllcew libw,
  66. awitools.def
  67. <<NOKEEP
  68.     rc -V awitools.res
  69.     del awitools.ucd
  70.     rename awitools.exe awitools.ucd
  71.  
  72.