home *** CD-ROM | disk | FTP | other *** search
- # ---------------------------------------------------------------------
- #
- # MathComp.mak - Math Components Makefile - QuickTime for Windows
- #
- # Version 1.0
- #
- # (c) 1988-1993 Apple Computer, Inc. All Rights Reserved.
- #
- # ---------------------------------------------------------------------
-
- all : mathcomp.dll mathglue.lib
-
- mathcomp.dll : mathcomp.obj mathdisp.obj mathcomp.def
- link /nod /a:16 libentry+mathcomp+mathdisp, mathcomp.dll, nul, \
- libw sdllcew qtw, mathcomp.def;
- rc mathcomp.dll
- del mathcomp.qtc
- ren mathcomp.dll mathcomp.qtc
-
- mathglue.lib : mathglue.obj
- erase mathglue.lib
- lib mathglue.lib + mathglue.obj;
-
- mathcomp.obj : mathcomp.cpp mathcomp.h
- cl /DSTRICT /c /nologo /ASw /Gs /G2Dx /GEdf /Ocglnot /Zl /W3 /WX mathcomp.cpp
-
- mathdisp.obj : mathdisp.asm addfs.inc sumfs.inc
- ml /c /Cp mathdisp.asm
-
- mathglue.obj : mathglue.asm addfs.inc sumfs.inc
- ml /c /Cp mathglue.asm
-