#--------------------
# Makefile for CLRTEST.EXE - Color selection custom control test program
#
# (C) Scott Gourley, 1991.
#--------------------

MODEL=S

CNODEBFLAGS= -c -Gsw -Ow -Zp -W3 -A$(MODEL)
CDEBFLAGS= -c -Gsw -Od -Zp -Zi -W3 -A$(MODEL)
CFLAGS=$(CNODEBFLAGS)
CDLLFLAGS= $(CFLAGS) -Aw

LNODEBFLAGS=/nod /align:16
LDEBFLAGS=/nod /align:16 /CO
LFLAGS=$(LNODEBFLAGS)

LIBS=$(MODEL)libcew libw
DLLLIBS=$(MODEL)dllcew libw

OBJS = clrtest.obj

head : clrtest.exe

clrtest.exe : $(OBJS) clrtest.def clrtest.res clrtest.ico
    link $(LFLAGS) $(OBJS), clrtest, nul.map, $(LIBS), clrtest
    rc clrtest.res

clrtest.res : clrtest.rc clrtest.dlg clrtestd.h clrtest.ico
clrtest.c	: clrtest.h clrctrl.h
