[BACK]Return to BCC_MAKEFILE CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2000 / gc

Diff for /OpenXM_contrib2/asir2000/gc/BCC_MAKEFILE between version 1.1.1.1 and 1.4

version 1.1.1.1, 1999/12/03 07:39:09 version 1.4, 2002/07/24 08:00:05
Line 1 
Line 1 
 # Makefile for Borland C++ 4.5 on NT  # Makefile for Borland C++ 5.5 on NT
 # For Borland 5.0, replace bc45 by bc5.  
 # If you have the Borland assembler, remove "-DUSE_GENERIC"  # If you have the Borland assembler, remove "-DUSE_GENERIC"
 #  #
 bc=        c:\bc45  bc=        c:\Borland\BCC55
 bcbin=     $(bc)\bin  bcbin=     $(bc)\bin
 bclib=     $(bc)\lib  bclib=     $(bc)\lib
 bcinclude= $(bc)\include  bcinclude= $(bc)\include
   
 cc=      $(bcbin)\bcc32  gcinclude= $(bc)\gc6.0\include
 rc=      $(bcbin)\brc32  
 lib=     $(bcbin)\tlib  cc=      $(bcbin)\bcc32
 link=    $(bcbin)\tlink32  rc=      $(bcbin)\brc32
 cflags=  -R -v -vi -H -H=gc.csm -I$(bcinclude);cord -L$(bclib) \  lib=     $(bcbin)\tlib
          -w-pro -w-aus -w-par -w-ccc -w-rch -a4 -D__STDC__=0  link=    $(bcbin)\tlink32
   cflags=  -O2 -R -v- -vi -H -H=gc.csm -I$(bcinclude);$(gcinclude);cord -L$(bclib) \
            -w-pro -w-aus -w-par -w-ccc -w-rch -a4 -D__STDC__=0
 #defines= -DSILENT  #defines= -DSILENT
 defines= -DSMALL_CONFIG -DSILENT -DALL_INTERIOR_POINTERS -DUSE_GENERIC  defines= -DSMALL_CONFIG -DSILENT -DALL_INTERIOR_POINTERS -DUSE_GENERIC -DNO_DEBUGGING -DNO_GETENV -DJAVA_FINALIZATION
   
 .c.obj:  .c.obj:
         $(cc) @&&|          $(cc) @&&|
         $(cdebug) $(cflags) $(cvars) $(defines) -o$* -c $*.c          $(cdebug) $(cflags) $(cvars) $(defines) -o$* -c $*.c
 |  |
   
 .cpp.obj:  .cpp.obj:
         $(cc) @&&|          $(cc) @&&|
         $(cdebug) $(cflags) $(cvars) $(defines) -o$* -c $*.cpp          $(cdebug) $(cflags) $(cvars) $(defines) -o$* -c $*.cpp
 |  |
   
 .rc.res:  .rc.res:
Line 39  OBJS= $(XXXOBJS:XXX=) 
Line 40  OBJS= $(XXXOBJS:XXX=) 
   
 all: gctest.exe cord\de.exe test_cpp.exe  all: gctest.exe cord\de.exe test_cpp.exe
   
 $(OBJS) test.obj: gc_priv.h gc_hdrs.h gc.h gcconfig.h MAKEFILE  $(OBJS) test.obj: include\private\gc_priv.h include\private\gc_hdrs.h include\gc.h include\private\gcconfig.h MAKEFILE
   
 gc.lib: $(OBJS)  gc.lib: $(OBJS)
     -del gc.lib          del gc.lib
         tlib $* @&&|          $(lib) $* @&&|
         $(XXXOBJS:XXX=+)          $(XXXOBJS:XXX=+)
 |  |
   
 gctest.exe: test.obj gc.lib  gctest.exe: tests\test.obj gc.lib
     $(cc) @&&|      $(cc) @&&|
         $(cflags) -W -e$* test.obj gc.lib          $(cflags) -W -e$* tests\test.obj gc.lib
 |  |
   
 cord\de.obj cord\de_win.obj: cord\cord.h cord\private\cord_pos.h cord\de_win.h \  cord\de.obj cord\de_win.obj: cord\cord.h cord\private\cord_pos.h cord\de_win.h \
     cord\de_cmds.h      cord\de_cmds.h
   
 cord\de.exe: cord\cordbscs.obj cord\cordxtra.obj cord\de.obj cord\de_win.obj \  cord\de.exe: cord\cordbscs.obj cord\cordxtra.obj cord\de.obj cord\de_win.obj \
         cord\de_win.res gc.lib          cord\de_win.res gc.lib
         $(cc) @&&|          $(cc) @&&|
         $(cflags) -W -e$* cord\cordbscs.obj cord\cordxtra.obj \          $(cflags) -W -e$* cord\cordbscs.obj cord\cordxtra.obj \
         cord\de.obj cord\de_win.obj gc.lib          cord\de.obj cord\de_win.obj gc.lib
 |  |
     $(rc) cord\de_win.res cord\de.exe      $(rc) cord\de_win.res cord\de.exe
   
 gc_cpp.obj: gc_cpp.h gc.h  gc_cpp.obj: include\gc_cpp.h include\gc.h
   
 gc_cpp.cpp: gc_cpp.cc  gc_cpp.cpp: gc_cpp.cc
         copy gc_cpp.cc gc_cpp.cpp          copy gc_cpp.cc gc_cpp.cpp
   
 test_cpp.cpp: test_cpp.cc  test_cpp.cpp: tests\test_cpp.cc
         copy test_cpp.cc test_cpp.cpp          copy tests\test_cpp.cc test_cpp.cpp
   
 test_cpp.exe: test_cpp.obj gc_cpp.h gc.h gc.lib  test_cpp.exe: test_cpp.obj gc_cpp.h gc.h gc.lib
     $(cc) @&&|      $(cc) @&&|
         $(cflags) -W -e$* test_cpp.obj gc.lib          $(cflags) -W -e$* test_cpp.obj gc.lib
 |  |
   
 scratch:  scratch:
     -del *.obj *.res *.exe *.csm cord\*.obj cord\*.res cord\*.exe cord\*.csm      -del *.obj *.res *.exe *.csm cord\*.obj cord\*.res cord\*.exe cord\*.csm
   
   clean:
         del gc.lib
         del *.obj
         del tests\test.obj
   

Legend:
Removed from v.1.1.1.1  
changed lines
  Added in v.1.4

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>