home *** CD-ROM | disk | FTP | other *** search
- #
- # MS MAKE makefile for PGRAPH Demo...
- #
- # -DMSC Define MSC for conditional compilation
- # -AL Large Model
- # -I\msc\include Identify default #include directory
- # -Ox Maximum optimisation
- # -Gs No stack checking
- # -Zp1 Byte-align structure members. (Word align -Zp2, DWord align -Zp4).
- # -c Compile only (no link)
-
- CL=\msc\cl -DMSC -AL -I\msc\include -Ox -Gs -Zp1 -c
-
- msc\demo.obj: demo.c pgraph.h
- $(CL) -Fomsc\demo.obj demo.c
-
- msc\demo_sub.obj: demo_sub.c pgraph.h
- $(CL) -Fomsc\demo_sub.obj demo_sub.c
-
- msc\demo.exe: msc\demo_sub.obj msc\pgraph.lib
- \msc\link /NOE msc\demo msc\demo_sub face,\
- msc\demo.exe,nul,\
- \msc\lib\llibce \msc\lib\slibce \msc\lib\graphics msc\pgraph msc\various
-
-