blob: b5de11997f60c24ee557c0b3a9a1003380054466 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
.AUTODEPEND
# *Translator Definitions*
CC = bcc +CHARCONV.CFG
TASM = TASM
TLIB = tlib
TLINK = tlink
LIBPATH = D:\BC\LIB
INCLUDEPATH = D:\BC\INCLUDE
# *Implicit Rules*
.c.obj:
$(CC) -c {$< }
.cpp.obj:
$(CC) -c {$< }
# *List Macros*
EXE_dependencies = \
charconv.obj \
getopt.obj
# *Explicit Rules*
charconv.exe: charconv.cfg $(EXE_dependencies)
$(TLINK) /v/x/c/P-/L$(LIBPATH) @&&|
c0s.obj+
charconv.obj+
getopt.obj
charconv
# no map file
cs.lib
|
# *Individual File Dependencies*
charconv.obj: charconv.cfg charconv.c
getopt.obj: charconv.cfg getopt.c
# *Compiler Configuration File*
charconv.cfg: makefile.bcc
copy &&|
-2
-f-
-v
-vi-
-wpro
-weas
-wpre
-I$(INCLUDEPATH)
-L$(LIBPATH)
| charconv.cfg
|