File: win32-borlandc.mk

package info (click to toggle)
ftjam 2.3.5-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 800 kB
  • ctags: 1,022
  • sloc: ansic: 7,951; yacc: 365; sh: 95; makefile: 57
file content (21 lines) | stat: -rw-r--r-- 417 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Makefile to build Jam with Borland C on Win32 systems
#
# To use it, you must be in the top Jam source directory,
# have the Borland C++ compiler in your current path, and
# call:
#
#    make -fbuilds\win32-borlandc.mk
#
# the program "jam.exe" will be created in the new
# directory named "bin.ntx86"
#

CC     = bcc32
TARGET = -ejam0
CFLAGS = /DNT -w- -q

all: jam0
	attrib -r jambase.c
	jam0

!include common.mk