# Part of the A-A-P recipe executive: remember the work specified in the recipe
# Copyright (C) 2002 Stichting NLnet Labs
# Permission to copy and use this file is specified in the file COPYING.
# If this file is missing you can find it here:
http://www.a-a-p.org/COPYING
#
# Global variables, can be used anywhere
#
# Always use "import Global" and prepend "Global.", so that it's clear a global
# variable is being used.
#
# arguments from the command line
cmd_args = None
# The Work object that DoRead creates. Many things can be found in here, but
# only after it's initialized.
work = None
# all standard targets that are virtual
virtual_targets = [
"add",
"all",
"checkin",
"checkout",
"clean",
"commit",
"distclean",
"distribute",
"finally",
"install",
"refresh",
"remove",
"tryout",
"unlock",
"update",
]
# vim: set sw=4 sts=4 tw=79 fo+=l: