home *** CD-ROM | disk | FTP | other *** search
/ HomeWare 14 / HOMEWARE14.bin / music / vaisdk.arj / PLAY < prev    next >
Text File  |  1994-04-07  |  693b  |  33 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: play.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. play.obj: play.c vbeai.h
  28.     cl $(CS) $(CO) play.c
  29.  
  30. play.exe: play.obj vesa.obj vbeai.h
  31.     link $(LS) $(LO) play+vesa;
  32.  
  33.