~ubuntu-branches/ubuntu/hardy/libgc/hardy-updates

« back to all changes in this revision

Viewing changes to BCC_MAKEFILE

  • Committer: Bazaar Package Importer
  • Author(s): Ryan Murray
  • Date: 2005-02-03 00:50:53 UTC
  • mto: (3.1.1 etch) (1.2.4 upstream)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20050203005053-9c0v9r2qcm2g1cfp
Tags: upstream-6.4
ImportĀ upstreamĀ versionĀ 6.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
bclib=     $(bc)\lib
7
7
bcinclude= $(bc)\include
8
8
 
9
 
gcinclude= $(bc)\gc6.0\include
 
9
gcinclude1 = $(bc)\gc6.2\include
 
10
gcinclude2 = $(bc)\gc6.2\cord
10
11
 
11
12
cc=      $(bcbin)\bcc32
12
13
rc=      $(bcbin)\brc32
13
14
lib=     $(bcbin)\tlib
14
 
link=    $(bcbin)\tlink32
15
 
cflags=  -O2 -R -v- -vi -H -H=gc.csm -I$(bcinclude);$(gcinclude);cord -L$(bclib) \
 
15
link=    $(bcbin)\ilink32
 
16
cflags=  -O2 -R -v- -vi -H -H=gc.csm -I$(bcinclude);$(gcinclude1);$(gcinclude2) -L$(bclib) \
16
17
         -w-pro -w-aus -w-par -w-ccc -w-rch -a4 -D__STDC__=0
17
18
#defines= -DSILENT
18
 
defines= -DSMALL_CONFIG -DSILENT -DALL_INTERIOR_POINTERS -DUSE_GENERIC -DNO_DEBUGGING -DNO_GETENV -DJAVA_FINALIZATION
 
19
defines= -DSILENT -DALL_INTERIOR_POINTERS -DUSE_GENERIC -DNO_GETENV -DJAVA_FINALIZATION -DGC_OPERATOR_NEW_ARRAY
19
20
 
20
21
.c.obj:
21
22
        $(cc) @&&|
53
54
        $(cflags) -W -e$* tests\test.obj gc.lib
54
55
|
55
56
 
56
 
cord\de.obj cord\de_win.obj: cord\cord.h cord\private\cord_pos.h cord\de_win.h \
 
57
cord\de.obj cord\de_win.obj: include\cord.h include\private\cord_pos.h cord\de_win.h \
57
58
    cord\de_cmds.h
58
59
 
59
60
cord\de.exe: cord\cordbscs.obj cord\cordxtra.obj cord\de.obj cord\de_win.obj \
72
73
test_cpp.cpp: tests\test_cpp.cc
73
74
        copy tests\test_cpp.cc test_cpp.cpp
74
75
 
75
 
test_cpp.exe: test_cpp.obj gc_cpp.h gc.h gc.lib
 
76
test_cpp.exe: test_cpp.obj include\gc_cpp.h include\gc.h gc.lib
76
77
    $(cc) @&&|
77
78
        $(cflags) -W -e$* test_cpp.obj gc.lib
78
79
|