2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-15 00:52:16 +00:00

move to trunk

[SVN r11639]
This commit is contained in:
Dave Abrahams
2001-11-09 13:43:27 +00:00
parent c74b4901b0
commit e8e98d1f20
6 changed files with 124 additions and 0 deletions

View File

@@ -0,0 +1,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

View File

@@ -0,0 +1,21 @@
# Makefile to build Jam with Mingw GCC on Win32 systems
#
# To use it, you must be in the top Jam source directory,
# have GCC compiler in your current path, and call:
#
# make -f builds/win32-gcc.mk
#
# the program "jam.exe" will be created in the new
# directory named "bin.ntx86"
#
CC = gcc
TARGET = -o jam0.exe
CFLAGS = -DNT
all: jam0
attrib -r jambase.c
jam0
include common.mk

View File

@@ -0,0 +1,20 @@
# Makefile to build jam with Visual C on Win32 systems
#
# To use it, you must be in the top Jam source directory,
# have the compiler in your path, and call:
#
# nmake -f builds\win32-visualc.mk
#
# the program "jam.exe" will be created in a new directory
# named "bin.ntx86"
#
CC = cl /nologo
CFLAGS = -DNT
TARGET = /Fejam0
LINKLIBS = kernel32.lib
all: jam0
attrib -r jambase.c
jam0 $(JAM0_ARGS)
!include common.mk

View File

@@ -0,0 +1,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

View File

@@ -0,0 +1,21 @@
# Makefile to build Jam with Mingw GCC on Win32 systems
#
# To use it, you must be in the top Jam source directory,
# have GCC compiler in your current path, and call:
#
# make -f builds/win32-gcc.mk
#
# the program "jam.exe" will be created in the new
# directory named "bin.ntx86"
#
CC = gcc
TARGET = -o jam0.exe
CFLAGS = -DNT
all: jam0
attrib -r jambase.c
jam0
include common.mk

View File

@@ -0,0 +1,20 @@
# Makefile to build jam with Visual C on Win32 systems
#
# To use it, you must be in the top Jam source directory,
# have the compiler in your path, and call:
#
# nmake -f builds\win32-visualc.mk
#
# the program "jam.exe" will be created in a new directory
# named "bin.ntx86"
#
CC = cl /nologo
CFLAGS = -DNT
TARGET = /Fejam0
LINKLIBS = kernel32.lib
all: jam0
attrib -r jambase.c
jam0 $(JAM0_ARGS)
!include common.mk