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

  1. #
  2. # Build file for creating the Miscellaneous TINY  model objects
  3. #
  4. AS   = /Mx                ### make file ASSEMBLER permenant switches
  5. CS   = /c /Ox /Zp1            ### make file COMPILER permenant switches
  6. AO   =       /DMODELSIZE=0 /DBUILD_NONE=1 ### make file ASSEMBLER command line switches
  7. CO   =       /AT                ### make file COMPILER command line switches
  8. INC  = ..\..\INC
  9. GINC = ..\..\..\INC
  10. LBO  =
  11. LIB  = ..\..\INC
  12.  
  13. DEFAULT: $(LIB)\mvtlib.lib $(LIB)\mvhtlib.lib
  14.  
  15. tfmemcpy.obj: fmemcpy.asm $(GINC)\model.inc $(INC)\common.inc $(GINC)\masm.inc
  16.     masm $(AS) $(AO) fmemcpy,tfmemcpy;
  17.  
  18. tgethw.obj: gethw.asm $(GINC)\model.inc $(GINC)\masm.inc
  19.     masm $(AS) $(AO) gethw,tgethw;
  20.  
  21. thisto.obj: histo.asm $(GINC)\model.inc $(GINC)\masm.inc
  22.     masm $(AS) $(AO) histo,thisto;
  23.  
  24. tmvout.obj: mvout.asm $(GINC)\model.inc $(GINC)\masm.inc
  25.     masm $(AS) $(AO) mvout,tmvout;
  26.  
  27. tinithw.obj: inithw.c $(INC)\mixers.h $(INC)\binary.h $(INC)\common.h
  28.     cl $(CS) $(CO) /Fotinithw inithw.c
  29.  
  30. tmvstate.obj: mvstate.asm $(GINC)\model.inc $(GINC)\masm.inc
  31.     masm $(AS) $(AO) mvstate,tmvstate;
  32.  
  33. tselfilt.obj: selfilt.c $(INC)\pcmio.h $(INC)\common.h
  34.     cl $(CS) $(CO) /Fotselfilt selfilt.c
  35.  
  36. $(LIB)\mvtlib.lib: thisto.obj tselfilt.obj tinithw.obj
  37.     lib $(LBO) $(LIB)\mvtlib -+thisto.obj -+tselfilt.obj -+tinithw.obj ,,$(LIB)\mvtlib;
  38.  
  39. $(LIB)\mvhtlib.lib: tfmemcpy.obj tgethw.obj tmvstate.obj tmvout.obj
  40.     lib $(LBO) $(LIB)\mvhtlib -+tfmemcpy.obj -+tgethw.obj -+tmvstate.obj -+tmvout.obj ,,$(LIB)\mvhtlib;
  41.  
  42.