home *** CD-ROM | disk | FTP | other *** search
/ Borland Programmer's Resource / Borland_Programmers_Resource_CD_1995.iso / sounds / setsbvol / makefile next >
Encoding:
Makefile  |  1995-05-19  |  266 b   |  13 lines

  1. !include <ntwin32.mak>
  2.  
  3. OBJS=setsbvol.obj
  4.  
  5. all: setsbvol.exe
  6.  
  7. .c.obj:
  8.     $(cc) $(cflags) -DDEBUG -Ge -Op -nologo $(cvars) $*.c
  9.  
  10. setsbvol.exe: $(OBJS)
  11.     $(cvtobj) $(cvtdebug) *.obj
  12.     $(link) $(guiflags) winmm.lib -out:setsbvol.exe $(OBJS) $(guilibs)
  13.