
* jam_src/builtins.c: New builtin SEARCH_FOR_TARGET. * jam_src/rules.c (bind_explicitly_located_targets): New function. (search_for_target): New function. * jam_src/make.c (make): Call 'bind_explicitly_located_targets()' immediately on entering. * jam_src/search.c (call_bind_rule): No longer 'static'. * new/builtin.jam (c-scanner.process): Real implementation. * test/dependency_test.py: Really test for dependencies. [SVN r15646]
36 lines
1.1 KiB
C
36 lines
1.1 KiB
C
/*
|
|
* Copyright 1993-2002 Christopher Seiwald and Perforce Software, Inc.
|
|
*
|
|
* This file is part of Jam - see jam.c for Copyright information.
|
|
*/
|
|
|
|
#ifndef JAM_BUILTINS_H
|
|
# define JAM_BUILTINS_H
|
|
|
|
# include "frames.h"
|
|
|
|
/*
|
|
* builtins.h - compile parsed jam statements
|
|
*/
|
|
|
|
void load_builtins();
|
|
|
|
LIST *builtin_depends( PARSE *parse, FRAME *args );
|
|
LIST *builtin_echo( PARSE *parse, FRAME *args );
|
|
LIST *builtin_exit( PARSE *parse, FRAME *args );
|
|
LIST *builtin_flags( PARSE *parse, FRAME *args );
|
|
LIST *builtin_glob( PARSE *parse, FRAME *args );
|
|
LIST *builtin_subst( PARSE *parse, FRAME *args );
|
|
LIST *builtin_match( PARSE *parse, FRAME *args );
|
|
LIST *builtin_hdrmacro( PARSE *parse, FRAME *args );
|
|
LIST *builtin_rulenames( PARSE *parse, FRAME *args );
|
|
LIST *builtin_import( PARSE *parse, FRAME *args );
|
|
LIST *builtin_export( PARSE *parse, FRAME *args );
|
|
LIST *builtin_caller_module( PARSE *parse, FRAME *args );
|
|
LIST *builtin_backtrace( PARSE *parse, FRAME *args );
|
|
LIST *builtin_pwd( PARSE *parse, FRAME *args );
|
|
LIST *builtin_update( PARSE *parse, FRAME *args );
|
|
LIST *builtin_search_for_target( PARSE *parse, FRAME *args );
|
|
|
|
#endif
|