home *** CD-ROM | disk | FTP | other *** search
- #
- # NMake file for PALETTE.UCD
- # Copyright 1987-1992, Macromedia, Inc.
- #
- # Revision history:
- # 7/25/91 - initial version
- # 11/29/92 - revised for 2.0
- #
- # This make file was created and tested with the following tools:
- # Microsoft NMake v1.11
- # Microsoft C6.0A
- # Microsoft Link 5.10
- # Microsoft Resource Compiler v3.0 & v3.10 (see below)
- # Microsoft MASM 5.10A (if assembling LIBENTRY.ASM)
- #
- # Build instructions:
- # nmake [-a] [debug=]
- #
- # Rebuilds PALETTE.UCD. Use "-a" to force all targets to be
- # rebuilt. Use "debug=" to build a version with CodeView symbols.
- #
-
- # If using the Windows 3.0 resource compiler, comment out this line.
- rc31 = /30
-
- !IFDEF debug
- cdebug = -Zi -Od
- ldebug = /co
- !ELSE
- cdebug = -Ocgzels
- ldebug =
- !ENDIF
-
- OBJS = palucd.obj apwapi.obj libentry.obj
- CFLAGS = -AMw -Gsw -W3 -Zpe $(cdebug)
-
- palette.ucd: $(OBJS) palette.def
- link /noe/nod$(ldebug) $(OBJS),palette.ucd,,mdllcew libw,palette.def
- rc $(rc31) palette.rc palette.ucd
-