home *** CD-ROM | disk | FTP | other *** search
- ## bor31.m (cb.m)
- ## Makefile Template for C++/Views 2.1 Applications for Borland C++ 3.1
- ## Copyright (c) 1993, Liant Software Corporation
- ##
- ## Revision History:
- ## ----------------
- ## 10/05/92 jmd changed rc to brc
- ##
-
- ARCHIVER = -DARCHIVER ## remove comment if archiver application desired
- ## WINVER = -DMS_WINDOWS
- WINVER = -DWIN31
- WINDOWS = -W $(WINVER) -DCPPV11
- DEFINES = $(WINDOWS) $(ARCHIVER)
-
- ##ifdef BORLAND ## uncomment the following lines if using the Borland compiler
- ## DEBUG = -v ## remove comment if debug symbols desired
- ## LDEBUG = -v ## remove comment if debug symbols desired
- COMPILE = bcc -c -ml -Vf -I$(INCLUDE) $(DEBUG) $(DEFINES) -DTURBO
- LINK = tlink $(LDEBUG) -L$(LIB)
- FLAG = -Fc
- ##endif
-
- OBJECTS = #class objects#
-
- #application#.exe: #application#.obj $(OBJECTS)
- $(LINK) @#application#.lnk
- brc #application#.rc #application#.exe
-
- #application#.obj: #application#.cpp
- $(COMPILE) $(FLAG) #application#.cpp
-
- .cpp.obj:
- $(COMPILE) $*.cpp
-
- #dependancies#
-
-