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

  1. #  
  2. #  NMake file for PALETTE.UCD
  3. #  Copyright 1987-1992, Macromedia, Inc.
  4. #
  5. #  Revision history:
  6. #     7/25/91 - initial version
  7. #    11/29/92 - revised for 2.0
  8. #
  9. #  This make file was created and tested with the following tools:
  10. #     Microsoft NMake v1.11
  11. #     Microsoft C6.0A
  12. #     Microsoft Link 5.10
  13. #     Microsoft Resource Compiler v3.0 & v3.10 (see below)
  14. #     Microsoft MASM 5.10A (if assembling LIBENTRY.ASM)
  15. #
  16. #  Build instructions:
  17. #     nmake [-a] [debug=]
  18. #
  19. #     Rebuilds PALETTE.UCD.  Use "-a" to force all targets to be
  20. #     rebuilt.  Use "debug=" to build a version with CodeView symbols.
  21. #
  22.  
  23. #  If using the Windows 3.0 resource compiler, comment out this line.
  24. rc31    = /30
  25.  
  26. !IFDEF debug
  27. cdebug  = -Zi -Od
  28. ldebug  = /co
  29. !ELSE
  30. cdebug  = -Ocgzels
  31. ldebug  = 
  32. !ENDIF
  33.  
  34. OBJS    = palucd.obj apwapi.obj libentry.obj
  35. CFLAGS  = -AMw -Gsw -W3 -Zpe $(cdebug)
  36.  
  37. palette.ucd: $(OBJS) palette.def
  38.    link /noe/nod$(ldebug) $(OBJS),palette.ucd,,mdllcew libw,palette.def
  39.    rc $(rc31) palette.rc palette.ucd
  40.