diff options
author | Paul Smith <psmith@gnu.org> | 2002-08-01 13:16:57 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2002-08-01 13:16:57 +0000 |
commit | bccb277dda1a4dcc6729824a7c9d544086f147c3 (patch) | |
tree | 693bb06d69dd6e4829d8d1b1d339a694ff162ad3 /main.c | |
parent | a56563badd9b3cab2624c35f3a8104a3bb3b5f52 (diff) | |
download | gunmake-bccb277dda1a4dcc6729824a7c9d544086f147c3.tar.gz |
New variables, .VARIABLES and .TARGETS.
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -988,6 +988,10 @@ int main (int argc, char ** argv) atexit (msdos_return_to_initial_directory); #endif + /* Initialize the special variables. */ + define_variable (".VARIABLES", 10, "", o_default, 0); + define_variable (".TARGETS", 8, "", o_default, 0); + /* Read in variables from the environment. It is important that this be done before $(MAKE) is figured out so its definitions will not be from the environment. */ |