home *** CD-ROM | disk | FTP | other *** search
/ HomeWare 14 / HOMEWARE14.bin / music / vaisdk.arj / NOTE < prev    next >
Text File  |  1994-01-19  |  755b  |  36 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 /Gs /Zp1        ### 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: note.exe
  15.  
  16. #
  17. # Subroutines
  18. #
  19.  
  20. vesa.obj: vesa.c vbeai.h
  21.     cl $(CS) $(CO) vesa.c
  22.  
  23. #
  24. # noteBACK test application
  25. #
  26.  
  27. pdata.obj: pdata.c
  28.     cl $(CS) $(CO) pdata.c
  29.  
  30. note.obj: note.c vbeai.h
  31.     cl $(CS) $(CO) note.c
  32.  
  33. note.exe: note.obj pdata.obj vesa.obj vbeai.h
  34.     link $(LS) $(LO) note+pdata+vesa;
  35.  
  36.