#
# msc.mak: Makefile for MCI class hierarchy: Microsoft C/C++ version
#
# Copyright PMI Inc. 1993
#

WINCC   = cl -c -G2sw -Od -W3 -Zi -Zp -Tp
WINLINK = link /nod /co /onerror:noexe
WINLIB  = slibcew libw commdlg mmsystem

.cpp.obj:
	$(WINCC) $*.cpp

mciman.exe : mciman.obj mci.obj mciman.def mciman.res
     $(WINLINK) mciman mci, mciman, NUL, $(WINLIB), mciman
     rc -t mciman.res mciman.exe

mciman.obj : mciman.cpp resource.h mci.h
mci.obj    : mci.cpp mci.h

