# OLE SERVER DEMO
# Makefile
#
# (c) Copyright Microsoft Corp. 1991 -  All Rights Reserved

FILES  = srvrdemo.h makefile srvrdemo.rc
CFLAGS = -AS -Gsw -Od -Zi -Zpe -W3

#
# file dependencies
# 

all:            srvrdemo.exe

srvrdemo.res:   srvrdemo.rc srvrdemo.h srvrdemo.ico

srvrdemo.obj:   $(FILES) srvrDemo.c 

server.obj:     $(FILES) server.c 

doc.obj:        $(FILES) doc.c 

obj.obj:        $(FILES) obj.c

file.obj:       $(FILES) file.c 

srvrdemo.exe: srvrdemo.obj server.obj doc.obj obj.obj file.obj srvrdemo.def srvrdemo.res
    link /CO /NOD /NOE /MAP srvrdemo server doc obj file,,NUL, \
                       libw slibcew olesvr commdlg, srvrdemo.def
    rc -30 srvrdemo.res
