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:
21
historic/jam/src/builds/win32-borlandc.mk
Normal file
21
historic/jam/src/builds/win32-borlandc.mk
Normal 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
|
||||
21
historic/jam/src/builds/win32-gcc.mk
Normal file
21
historic/jam/src/builds/win32-gcc.mk
Normal 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
|
||||
|
||||
20
historic/jam/src/builds/win32-visualc.mk
Normal file
20
historic/jam/src/builds/win32-visualc.mk
Normal 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
|
||||
21
jam_src/builds/win32-borlandc.mk
Normal file
21
jam_src/builds/win32-borlandc.mk
Normal 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
|
||||
21
jam_src/builds/win32-gcc.mk
Normal file
21
jam_src/builds/win32-gcc.mk
Normal 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
|
||||
|
||||
20
jam_src/builds/win32-visualc.mk
Normal file
20
jam_src/builds/win32-visualc.mk
Normal 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
|
||||
Reference in New Issue
Block a user