File: w32bcc55.mak

package info (click to toggle)
cccc 1%3A3.1.4-4
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 3,956 kB
  • sloc: ansic: 33,244; cpp: 10,527; java: 622; makefile: 156; sh: 11
file content (33 lines) | stat: -rw-r--r-- 785 bytes parent folder | download | duplicates (9)
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
# w32bcc55.mak

## Makefile to build the CCCC project on the Borland C++ Command Line
## Compiler.
## (tested with a free copy which was shipped on a magazine CD, May 2001)
## See rules.mak for discussion of the meaning of the make variables
## which this file defines

# support for debugging (note that debug building is on by default)
!IF "$(DEBUG)"=="true"
CFLAGS_DEBUG=-v -y
LDFLAGS_DEBUG=-v
!ENDIF

PATHSEP=\\
CCC=bcc32.exe -v
#LD=ilink32.exe -L"$(BCDIR)\lib" C0D32.OBJ CW32.LIB IMPORT32.LIB
LD=bcc32.exe -v  -L"$(BCDIR)\lib"
CFLAGS= \
	-c -P -D_NO_VCL -DCCCC_CONF_W32BC -I$(PCCTS_H) \
	-w-aus -w-par -w-hid -w-inl \
	-I"$(BCDIR)\include" -tWC  $(CFLAGS_DEBUG)
C_OFLAG=-o
LDFLAGS=$(LDFLAGS_DEBUG)  
LD_OFLAG=-o
OBJEXT=obj
CCCC_EXE=cccc.exe

COPY=copy
RM=del

!INCLUDE rules.mak