home *** CD-ROM | disk | FTP | other *** search
/ Point Programming 1 / PPROG1.ISO / c / pas_sdk1 / pas / subs / mixers / tiny < prev   
Encoding:
Text File  |  1992-09-02  |  1.5 KB  |  53 lines

  1. ### $Author:   BCRANE  $
  2. ### $Date:   02 Sep 1992 10:28:38  $
  3. ### $Header:   X:/sccs/mixers/tmixer.__v   1.6   02 Sep 1992 10:28:38   BCRANE  $
  4. ### $Log:   X:/sccs/mixers/tmixer.__v  $
  5. #
  6. #   Rev 1.6   02 Sep 1992 10:28:38   BCRANE
  7. #changed comment prefix to # using vcs - let us see
  8. ###   
  9. ###      Rev 1.5   02 Sep 1992 10:25:50   BCRANE
  10. ###   removed dependencies on global include files (they are global and unchanging)
  11. ### $Logfile:   X:/sccs/mixers/tmixer.__v  $
  12. ### $Modtimes$
  13. ### $Revision:   1.6  $
  14. ### $Workfile:   tmixer  $ 
  15.  
  16. ###
  17. ### Build file for TINY  model MIXER and DIALOG box code
  18. ###
  19.  
  20. DEBUG=0             ## 1 = YES, 0 = NO
  21.  
  22. AS= /Mx                         ## static assember commands
  23. CS= /c /Ox /Zp1         ## static C compiler commands
  24. LS= /Ma             ## static linker commands
  25.  
  26. AO= /DMODELSIZE=0        ## optional assember commands
  27. CO= /AT             ## optional C compiler linker commands
  28. LO=                ## optional linker commands
  29.  
  30. LBO=
  31. LIB=  ..\..\inc
  32.  
  33. DEFAULT: $(LIB)\mvtlib.lib $(LIB)\mvhtlib.lib
  34.  
  35. tmixerc.obj: mixerc.c
  36.     cl $(CO) $(CS) /Fotmixerc mixerc.c
  37.  
  38. tcmixers.obj: cmixers.asm 
  39.     masm $(AO) $(AS) cmixers,tcmixers;
  40.  
  41. tdialog.obj: dialog.c dialog.h 
  42.     cl $(CO) $(CS) /Fotdialog dialog.c
  43.  
  44. tdialoga.obj: dialoga.asm 
  45.     masm $(AO) $(AS) dialoga,tdialoga;
  46.  
  47. $(LIB)\mvtlib.lib: tdialog.obj tdialoga.obj
  48.     lib $(LBO) $(LIB)\mvtlib -+tdialog.obj -+tdialoga.obj ,,$(LIB)\mvtlib;
  49.  
  50. $(LIB)\mvhtlib.lib: tmixerc.obj tcmixers.obj
  51.     lib $(LBO) $(LIB)\mvhtlib -+tmixerc.obj -+tcmixers.obj ,,$(LIB)\mvhtlib;
  52.  
  53.