#!/bin/sh

################################################################################
##
##  ADOBE CONFIDENTIAL
##
##  Copyright 2007 Adobe Systems Incorporated
##  All Rights Reserved.
##
##  NOTICE: All information contained herein is, and remains
##  the property of Adobe Systems Incorporated and its suppliers,
##  if any. The intellectual and technical concepts contained
##  herein are proprietary to Adobe Systems Incorporated and its
##  suppliers and are protected by trade secret or copyright law.
##  Dissemination of this information or reproduction of this material
##  is strictly forbidden unless prior written permission is obtained
##  from Adobe Systems Incorporated.
##
################################################################################


# aasdoc script for Unix.
# This simply executes the asdoc script in the same directory,
# inserting the option +configname=air, which makes
# asdoc use air-config.xml rather than flex-config.xml.
# On Windows, aasdoc.bat is used instead.

asdoc=`dirname "$0"`/asdoc
"$asdoc" +configname=air "$@"
