home *** CD-ROM | disk | FTP | other *** search
/ HomeWare 14 / HOMEWARE14.bin / music / vaisdk.arj / TESTW < prev    next >
Text File  |  1994-04-07  |  901b  |  43 lines

  1. #
  2. # The VESA code make file
  3. #
  4.  
  5. AS   = /Mx                      ### make file ASSEMBLER permenant switches
  6. AO   = /Zd /DMODELSIZE=1    ### make file ASSEMBLER command line switches
  7.  
  8. CS   = /c /Ox /Zp1 /Oi        ### make file COMPILER permenant switches
  9. CO   = /Zi /AS /G2        ### make file COMPILER command line switches
  10.  
  11. LS = /Ma            ### make file LINKER permentant switches
  12. LO = /Co            ### make file LINKER command line switches
  13.  
  14. DEFAULT: testw.exe testr.exe
  15.  
  16. #
  17. # Subroutines
  18. #
  19.  
  20. vesa.obj: vesa.c vbeai.h
  21.     cl $(CS) $(CO) vesa.c
  22.  
  23. #
  24. # PLAYBACK test application
  25. #
  26.  
  27. testw.obj: testw.c vbeai.h
  28.     cl $(CS) $(CO) testw.c
  29.  
  30. testw.exe: testw.obj vesa.obj vbeai.h
  31.     link $(LS) $(LO) testw+vesa;
  32.  
  33. #
  34. # RECORD test application
  35. #
  36.  
  37. testr.obj: testw.c vbeai.h
  38.     cl $(CS) $(CO) /Fotestr.obj /DRMODE=1 testw.c
  39.  
  40. testr.exe: testr.obj vesa.obj vbeai.h
  41.     link $(LS) $(LO) testr+vesa;
  42.  
  43.