/* * Copyright 1993, 2000 Christopher Seiwald. * * This file is part of Jam - see jam.c for Copyright information. */ /* * builtins.h - compile parsed jam statements */ void load_builtins(); LIST *builtin_depends( PARSE *parse, LOL *args ); LIST *builtin_echo( PARSE *parse, LOL *args ); LIST *builtin_exit( PARSE *parse, LOL *args ); LIST *builtin_flags( PARSE *parse, LOL *args ); LIST *builtin_glob( PARSE *parse, LOL *args );
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#3 | 1317 | Richard Geiger |
Update the copyright notices in all files touched in the upcoming drop into //public/jam/ |
||
#2 | 1244 | Richard Geiger |
New 'Glob' builtin that returns a list of files in a list of directories, given a list of patterns. === computer.perforce.com:1666: Change 19941 by seiwald@spice on 2001/01/08 23:32:00 Also, document the existence of rule values, the [ rule args ... ] syntax for accessing them, and the 'return' statement. |
||
#1 | 1241 | Richard Geiger |
Split jam's built-in rules out to builtins.c from compile.c, so that compile.c only deals with the language. === computer.perforce.com:1666: Change 19939 by seiwald@spice2 on 2001/01/08 22:55:10 |