home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_11_09 / 1109080a < prev    next >
Text File  |  1993-07-08  |  308b  |  16 lines

  1. # a makefile for the Fixed point class
  2.  
  3. test.exe: test.obj fixed.obj
  4.         c:\borlandc\bin\tlink /v c0s+test+fixed,test,nul,cs+emu+maths
  5.  
  6. .cpp.obj:
  7.    c:\borlandc\bin\bcc -ms -c -v $<
  8.  
  9. .asm.obj:
  10.    c:\borlandc\bin\tasm -ms -zi $*
  11.  
  12. test.obj : test.cpp fixed.h
  13.  
  14. fixed.obj : fixed.cpp fixed.h
  15.  
  16.