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

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