mirror of
https://github.com/boostorg/build.git
synced 2026-02-17 13:42:14 +00:00
22 lines
395 B
Makefile
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
|
|
|