#######################################################
##  makefile                                         ##
## -- Project file for per-client DGROUP demo DLL.   ##
#######################################################
all:	insdll.dll testdll.exe

.c.obj:
    cl -c -ASw -G2w -Od -Zdpe -W3 -DSTRICT $(DEFS) $<

insdll.obj:   insdll.c
testdll.obj:  testdll.c

insdll.dll:   insdll.obj empty.rc insdll.def makefile
    link /NOD/map insdll libentry, insdll.dll,, \
      libw sdllcew, insdll.def
    implib insdll.lib insdll.def
    rc $(DEFS) empty.rc insdll.dll
    mapsym insdll

testdll.exe: testdll.obj testdll.def empty.rc \
  insdll.lib makefile
    link /NOD/map testdll,,, libw slibcew insdll, \
      testdll.def
    rc $(DEFS) empty.rc testdll.exe
    mapsym testdll
