mirror of
https://github.com/boostorg/build.git
synced 2026-02-16 13:22:11 +00:00
21 lines
433 B
Makefile
21 lines
433 B
Makefile
# 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
|