mirror of
https://github.com/boostorg/build.git
synced 2026-02-16 01:12:13 +00:00
* jam_src/Jamfile, jam_src/boost-jam.spec, jam_src/patchlevel.h:
Updated version number to 3.1.1.
* jam_src/jam.c: Made JAM_VERSION three-element string.
* bootstrap.jam: When JAM_VERSION is 3.1.1 or more, call UPDATE
explicitly on all non-option element in the command line.
[SVN r14363]
24 lines
516 B
C
24 lines
516 B
C
/*
|
|
* Copyright 1993, 1995 Christopher Seiwald.
|
|
*
|
|
* This file is part of Jam - see jam.c for Copyright information.
|
|
*/
|
|
|
|
/*
|
|
* make.h - bring a target up to date, once rules are in place
|
|
*/
|
|
|
|
#include "lists.h"
|
|
|
|
int make( int n_targets, char **targets, int anyhow );
|
|
int make1( TARGET *t );
|
|
|
|
/*
|
|
* Specifies that the target should be updated.
|
|
*/
|
|
void mark_target_for_updating(char *target);
|
|
/*
|
|
* Returns the list of all the target previously passed to 'mark_target_for_updating'.
|
|
*/
|
|
LIST *targets_to_update();
|