home *** CD-ROM | disk | FTP | other *** search
Makefile | 1996-05-12 | 578 b | 34 lines |
- #
- # File: makefile
- #
- # Author: Rick LaMont
- #
- # Date: 3/30/96
- #
- # Purpose: Borland makefile for RenderDotC example applications.
- #
-
- .autodepend
- .cacheautodepend
-
- CC= bcc32
- COPTS= -W -v -xd -w-par
- INCDIR= \rdc\include
- LIBDIR= \rdc\lib
- IPATH= -I$(INCDIR) -Ic:\bc45\include
- LPATH= -L$(LIBDIR) -Lc:\bc45\lib
- CFLAGS= $(COPTS) $(IPATH) $(LPATH)
-
- all: bccw32.cfg teapot.exe showquad.exe
-
- bccw32.cfg: makefile
- copy &&|
- $(CFLAGS)
- | bcc32.cfg
-
- teapot.exe: teapot.obj
- $(CC) teapot.obj rendc.lib
-
- showquad.exe: showquad.obj
- $(CC) showquad.obj ri2rdc.lib
-