#!/bin/sh

################################################################################
##
##  ADOBE SYSTEMS INCORPORATED
##  Copyright 2007 Adobe Systems Incorporated
##  All Rights Reserved.
##
##  NOTICE: Adobe permits you to use, modify, and distribute this file
##  in accordance with the terms of the license agreement accompanying it.
##
################################################################################

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

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