home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 8 / CDASC08.ISO / VRAC / VCOLORS.ZIP / COLORS.M < prev    next >
Encoding:
Text File  |  1993-06-17  |  1.0 KB  |  38 lines

  1. ## bor31.m (cb.m)
  2. ## Makefile Template for C++/Views 2.1 Applications for Borland C++ 3.1
  3. ## Copyright (c) 1993, Liant Software Corporation
  4. ## 
  5. ## Revision History:
  6. ## ----------------
  7. ## 10/05/92 jmd    changed rc to brc
  8. ##
  9.  
  10. ARCHIVER = -DARCHIVER ## remove comment if archiver application desired
  11. ## WINVER = -DMS_WINDOWS
  12. WINVER = -DWIN31
  13. WINDOWS = -W $(WINVER) -DCPPV11
  14. DEFINES = $(WINDOWS) $(ARCHIVER) 
  15.  
  16. ##ifdef BORLAND ## uncomment the following lines if using the Borland compiler
  17. ##  DEBUG = -v ## remove comment if debug symbols desired
  18. ##  LDEBUG = -v ## remove comment if debug symbols desired
  19. COMPILE =  bcc  -c -ml -Vf -I$(INCLUDE) $(DEBUG) $(DEFINES) -DTURBO
  20. LINK = tlink $(LDEBUG) -L$(LIB)
  21. FLAG = -Fc
  22. ##endif
  23.  
  24. OBJECTS = #class objects#
  25.  
  26. #application#.exe:    #application#.obj $(OBJECTS) 
  27.     $(LINK)  @#application#.lnk
  28.     brc #application#.rc #application#.exe
  29.  
  30. #application#.obj: #application#.cpp
  31.     $(COMPILE) $(FLAG) #application#.cpp
  32.  
  33. .cpp.obj:
  34.     $(COMPILE) $*.cpp
  35.     
  36. #dependancies#
  37.  
  38.