2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-15 13:02:11 +00:00
Files
build/jam_src/builds/win32-visualc.mk
Dave Abrahams e8e98d1f20 move to trunk
[SVN r11639]
2001-11-09 13:43:27 +00:00

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