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

  1. #
  2. # Build file for creating the Miscellaneous SMALL model objects
  3. #
  4. AS   = /Mx                ### make file ASSEMBLER permenant switches
  5. CS   = /c /Ox /Zp1            ### make file COMPILER permenant switches
  6. AO   =       /DMODELSIZE=1 /DBUILD_NONE=1 ### make file ASSEMBLER command line switches
  7. CO   =       /AS                ### make file COMPILER command line switches
  8. INC  = ..\..\INC
  9. GINC = ..\..\..\INC
  10. LBO  =
  11. LIB  = ..\..\INC
  12.  
  13. DEFAULT: $(LIB)\mvslib.lib $(LIB)\mvhslib.lib
  14.  
  15. sfmemcpy.obj: fmemcpy.asm $(GINC)\model.inc $(INC)\common.inc $(GINC)\masm.inc
  16.     masm $(AS) $(AO) fmemcpy,sfmemcpy;
  17.  
  18. sgethw.obj: gethw.asm $(GINC)\model.inc $(GINC)\masm.inc
  19.     masm $(AS) $(AO) gethw,sgethw;
  20.  
  21. shisto.obj: histo.asm $(GINC)\model.inc $(GINC)\masm.inc
  22.     masm $(AS) $(AO) histo,shisto;
  23.  
  24. smvout.obj: mvout.asm $(GINC)\model.inc $(GINC)\masm.inc
  25.     masm $(AS) $(AO) mvout,smvout;
  26.  
  27. sinithw.obj: inithw.c $(INC)\mixers.h $(INC)\binary.h $(INC)\common.h
  28.     cl $(CS) $(CO) /Fosinithw inithw.c
  29.  
  30. smvstate.obj: mvstate.asm $(GINC)\model.inc $(GINC)\masm.inc
  31.     masm $(AS) $(AO) mvstate,smvstate;
  32.  
  33. sselfilt.obj: selfilt.c $(INC)\pcmio.h $(INC)\common.h
  34.     cl $(CS) $(CO) /Fosselfilt selfilt.c
  35.  
  36. $(LIB)\mvslib.lib: shisto.obj sselfilt.obj sinithw.obj
  37.     lib $(LBO) $(LIB)\mvslib -+shisto.obj -+sselfilt.obj -+sinithw.obj ,,$(LIB)\mvslib;
  38.  
  39. $(LIB)\mvhslib.lib: sfmemcpy.obj sgethw.obj smvstate.obj smvout.obj
  40.     lib $(LBO) $(LIB)\mvhslib -+sfmemcpy.obj -+sgethw.obj -+smvstate.obj -+smvout.obj ,,$(LIB)\mvhslib;
  41.  
  42.