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

22 lines
395 B
Makefile

# 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