#/***************************************************************************/
#/*                              CD SOUND OFF                               */
#/***************************************************************************/
#/*
#
#    CD SoundOff is an audio CD player that is provided for your enjoyment.  
#If you like CD SoundOff, feel free to show me by helping with the 
#development costs.  Any and all donations will be greatly appreciated.
#
#    CD SoundOff is provided as is with the C source code.  This software was 
#developed using the Microsoft Windows 3.1 SDK and Microsoft C 7.0.  Feel free 
#to add your own enhancements to CD SoundOff and please send me a copy
#so that I can keep up with all of the new and exciting CD bells and 
#whistles.  
#
#                              NickleWare
#                              P.O. Box 393
#                              Orem, UT. 84059
#
#
#
#NickleWare 
#CompuServe: 72730,1002
#Copyright (C) 93 Bradley Nicholes 
#
#This documentation must accompany the CD SoundOff software. 
#
#NickleWare or Bradley Nicholes shall not be liable for any damages, whether 
#direct, indirect, special or consequential arising from the use or failure 
#of this program to operate in the manner desired by the user.
#
#*/
#
#/**************************************************************************/


OPT= -Ox
DEBUG=      
CVPLINK= 

.c.obj:
    cl -c -AM $(OPT) -Zp -G2sw -W3 -FPa $(DEBUG) $*.c >$*.err
    type $*.err
    lib SoundOff -+$*.obj;
    
all: soundoff.res soundoff.obj soundoff.exe
    
SoundOff.res: SoundOff.rc SoundOff.dlg SoundOff.h
    rc -r SoundOff.rc

SoundOff.obj: SoundOff.c SoundOff.h

SoundOff.exe: SoundOff.obj SoundOff.lib SoundOff.def SoundOff.res
    link /m/seg:256/packcode:4096/a:16 SoundOff, SoundOff, SoundOff, \
       SoundOff mmsystem mlibcaw libw/NOE/NOD $(CVPLINK), SoundOff.def
    rc SoundOff.res


