home *** CD-ROM | disk | FTP | other *** search
/ Black Box 4 / BlackBox.cdr / lan / wbtrex.arj / SAMPLE.MAK < prev    next >
Text File  |  1979-12-31  |  573b  |  25 lines

  1. #
  2. # Makefile for sample MS-Windows application
  3. # using Btrieve DLL's
  4. #
  5.  
  6.  
  7. sample.obj   : sample.c
  8.       cl /c /AM /Gsw /Od /Zliepd sample.c
  9.  
  10. init.obj     : init.c
  11.       cl /c /AM /Gsw /Od /Zliepd init.c
  12.  
  13. dialogs.obj  : dialogs.c sample.h
  14.       cl /c /AM /Gsw /Od /Zliepd dialogs.c
  15.  
  16. wbtrintf.obj : wbtrintf.c
  17.       cl /c /AM /Gsw /Od /Zliepd wbtrintf.c
  18.  
  19. sample.res : sample.rc sample.h
  20.       rc -r sample.rc
  21.  
  22. sample.exe : sample.obj init.obj dialogs.obj wbtrintf.obj sample.def sample.res
  23.       link4 /align:16/CO/MAP @sample.lnk
  24.       rc sample.res
  25.