
========================================================================
    CONSOLE APPLICATION : am2dsp Project Overview
========================================================================

This project is part of the fg.sln set ... February, 2005

Overall purpose is to parse a 'makefile.am', and process the SUBDIRS folder,
getting, static LIB information /MT /MTd Multi-threaded, or CONSOLE WIN32 app ...
Some parts are configurable by using an am2dsp.cfg file ...

am2cfg project - convert (some) makefile.am projects to Microsoft Visual Studio
DSP format ... to allow easy maintenance, in the hands of the user, rather than
the creator ... that is, it is intended only to be run on a WIN32 machine,
although some attempt has been made to keep the code compilable, runable on
some *nix machines ...


am2dsp.vcproj
    This is the main project file for VC++ projects generated using an Application Wizard. 
    It contains information about the version of Visual C++ that generated the file, and 
    information about the platforms, configurations, and project features selected with the
    Application Wizard.

am2dsp.cxx
    This is the main application source file.

fixed.cxx/hxx
   This contains the DSP header data ... can be maybe loaded from config file
   
sprtf.cxx/hxx




This project is loosely based on a beatiful perl script, currently in use ...
My heartfelt thanks to all the 'algorithm' contained there in ... understanding
them assisted me understanding the makefile.am syntax, without ever having
'formerly' studied it ... where would I find a reference?

/* ***************************
am2dsp.pl, circa Sept, 2004, or earlier ... now Feb, 2005
#!/usr/bin/perl -w

eval 'exec /usr/bin/perl -S $0 ${1+"$@"}'
    if 0;

use strict;
use Cwd;

my $VERSION = "0.1";
my $PACKAGE = "am2dsp";

# String constants.
my $IGNORE_PATTERN = "^##([^#].*)?\$";
my $WHITE_PATTERN = "^[ \t]*\$";
my $COMMENT_PATTERN = "^#";
my $RULE_PATTERN = "^([\$a-zA-Z_.][-.a-zA-Z0-9_(){}/\$]*) *:([^=].*|)\$";
my $SUFFIX_RULE_PATTERN = "^\\.([a-zA-Z]+)\\.([a-zA-Z]+)\$";
my $MACRO_PATTERN = "^([A-Za-z][A-Za-z0-9_]*)[ \t]*([:+]?)=[ \t]*(.*)\$";
my $BOGUS_MACRO_PATTERN = "^([^ \t]*)[ \t]*([:+]?)=[ \t]*(.*)\$";
my $IF_PATTERN = "^if[ \t]+\([A-Za-z][A-Za-z0-9_]*\)[ \t]*\(#.*\)?\$";
my $ELSE_PATTERN = "^else[ \t]*\(#.*\)?\$";
my $ENDIF_PATTERN = "^endif[ \t]*\(#.*\)?\$";
my $PATH_PATTERN='(\\w|/|\\.)+';
# This will pass through anything not of the prescribed form.
my $INCLUDE_PATTERN = "^include[ \t]+((\\\$\\\(top_srcdir\\\)/${PATH_PATTERN})|(\\\$\\\(srcdir\\\)/${PATH_PATTERN})|([^/\\\$]${PATH_PATTERN}))[ 
\t]*(#.*)?\$";

my $AM_CONDITIONAL_PATTERN = "AM_CONDITIONAL\\((\\w+)";
my $AM_INIT_AUTOMAKE = "AM_INIT_AUTOMAKE\\(([^,]+),[ \t]*([^)]+)";

# Hash table of AM_CONDITIONAL variables seen in configure.
my %configure_cond = ();

# This holds the names which are targets.  These also appear in
# %contents.
my %targets = ();

# This holds the line numbers at which various elements of
# %contents are defined.
my %content_lines = ();

my %content_seen = ();

# This maps the source extension of a suffix rule to its
# corresponding output extension.
my %suffix_rules = ();

# Hash table of discovered configure substitutions.  Keys are names,
# values are `FILE:LINE' strings which are used by error message
# generation.
my %configure_vars = ();

# This holds the set of included files.
my @include_stack = ();

my $verbose = 0;
my $vcond;
my @conditional_stack = ();
my %contents = ();
my %conditional = ();

# This holds our (eventual) exit status.  We don't actually exit until
# we have processed all input files.
my $exit_status = 0;

my @make_input_list = ();
my %make_list = ();

# Names used in AC_CONFIG_HEADER call.  @config_fullnames holds the
# name which appears in AC_CONFIG_HEADER, colon and all.
# @config_names holds the file names.  @config_headers holds the '.in'
# files.  Ordinarily these are similar, but they can be different if
# the weird "NAME:FILE" syntax is used.
my @config_fullnames = ();
my @config_names = ();
my @config_headers = ();
# Line number at which AC_CONFIG_HEADER appears in configure.in.
my $config_header_line = 0;

# Relative location of top build directory.
my $top_builddir = '';

my $relative_dir = '.';

my $output_vars = '';
my $output_trailer = '';

# List of Makefile.am's to process, and their corresponding outputs.
my @input_files = ();
my %output_files = ();

# List of files in AC_OUTPUT without Makefile.am, and their outputs.
my @other_input_files = ();

my @var_list = ();
my %am_vars = ();
my %def_type = ();

# Extracted from AM_INIT_AUTOMAKE(package,version)
my $dsp_package = 'FGFS';
my $dsp_version = '0.2';

my $static_lib = 0;

parse_arguments(@ARGV);

scan_configure();
die "automake: no \`Makefile.am' found or specified\n"
    if ! @input_files;

if ($static_lib) {
    static_lib_dsp_init($dsp_package);
} else {
    console_app_dsp_init($dsp_package);
}

my $am_file;
foreach $am_file (@input_files) {
    dsp_add_group($dsp_package, $am_file);
}
dsp_finish($dsp_package);
generate_dsw( $dsp_package );

#
# TODO: option to specify static library or console app.
#
sub parse_arguments {
    my @av = @_;

    while (@av) {
	if ($av[0] eq '--version') {
	} elsif ($av[0] eq '--help') {
	} elsif ($av[0] eq '--verbose' || $av[0] eq '-v') {
	    $verbose = 1;
	} elsif ($av[0] eq '--package' || $av[0] eq '-p') {
	    require_argument(@av);
	    shift @av;
	    $dsp_package = $av[0];
	} elsif ($av[0] eq '--lib' || $av[0] eq '-l') {
	    # Create a static library
	    $static_lib = 1;
	} elsif ($av[0] =~ /^-/) {
	    die "am2dsp: unrecognised option -- `$av[0]'\nTry am2dsp --help for 
more information.\n";
	} else {
	}
	shift @av;
    }
}

# Ensure argument exists, or die.
sub require_argument
{
    my ($arg, @arglist) = @_;
    die "am2dsp: no argument given for option \`$arg'\n"
        if ! @arglist;
}

sub scan_configure {
    scan_one_configure_file('configure.in');
    scan_one_configure_file('aclocal.m4')
	if -f 'aclocal.m4';

    if (! @input_files) {
	@input_files = @make_input_list;
	%output_files = %make_list;
    }
}

sub scan_one_configure_file {
    my $filename = shift;
    open(CONFIGURE, $filename)
	|| die "am2dsp: can't open \`$filename': $!\n";
    print "am2dsp: reading $filename\n" if $verbose;

    my $in_ac_output = 0;
    my $ac_output_line = '';

    while (<CONFIGURE>) {
	# Remove comments from current line.
	s/\bdnl\b.*$//;
	s/\#.*$//;

        # Skip macro definitions.  Otherwise we might be confused into
        # thinking that a macro that was only defined was actually
        # used.
        next if /AC_DEFUN/;

        # Follow includes.  This is a weirdness commonly in use at
        # Cygnus and hopefully nowhere else.
        if (/sinclude\((.*)\)/ && -f $1)
        {
            &scan_one_configure_file ($1);
        }

	if (! $in_ac_output && s/AC_OUTPUT\s*\(\[?//) {
	    $in_ac_output = 1;
	    $ac_output_line = $.;
	}

	if ($in_ac_output)
	{
	    my $closing = 0;
	    if (s/[\]\),].*$//)
	    {
		$in_ac_output = 0;
		$closing = 1;
	    }

	    # Look at potential Makefile.am's
	    foreach (split)
	    {
                # Must skip empty string for Perl 4.
                next if $_ eq "\\" || $_ eq '';

		my ($local,$input,@rest) = split(/:/);
		if (! $input)
		{
		    $input = $local;
		}
		else
		{
		    $input =~ s/\.in$//;
		}

		if (-f $input . '.am')
		{
		    push(@make_input_list, $input);
		    $make_list{$input} = join(':', ($local,@rest));
		}
		else
		{
                    # We have a file that automake should cause to be
                    # rebuilt, but shouldn't generate itself.
                    push (@other_input_files, $_);
		}
	    }
	}

        # Handle configuration headers.  A config header of `[$1]'
        # means we are actually scanning AM_CONFIG_HEADER from
        # aclocal.m4.
        if (/A([CM])_CONFIG_HEADER\s*\((.*)\)/
            && $2 ne '[$1]')
        {
            &am_conf_line_error
                ($filename, $., "\`automake requires \`AM_CONFIG_HEADER', 
not \`AC_CONFIG_HEADER'")
                    if $1 eq 'C';

            $config_header_line = $.;
            my ($one_hdr);
            foreach $one_hdr (split (' ', $2))
            {
                push (@config_fullnames, $one_hdr);
                if ($one_hdr =~ /^([^:]+):(.+)$/)
                {
                    push (@config_names, $1);
                    push (@config_headers, $2);
                }
                else
                {
                    push (@config_names, $one_hdr);
                    push (@config_headers, $one_hdr . '.in');
                }
            }
        }

	if (/$AM_CONDITIONAL_PATTERN/o)
	{
	    $configure_cond{$1} = 1;
	}

	if (/$AM_INIT_AUTOMAKE/o)
	{
	    $dsp_package = $1;
	    $dsp_version = $2;
	}
    }

    close(CONFIGURE);
}

sub read_main_am_file {
    $am_file = shift;

    read_am_file($am_file);

    my @topdir = ();
    foreach (split(/\//, $relative_dir)) {
	next if $_ eq '.' || $_ eq '';
	if ($_ eq '..') {
	    pop @topdir;
	} else {
	    push(@topdir, '..');
	}
    }
    @topdir = ('.') if ! @topdir;

    my $top_builddir = join('/', @topdir);
    
}

sub read_am_file {
    $am_file = shift;
    open( AM_FILE, $am_file )
	or die "Can't open $am_file: $!\n";
    print "am2dsp: reading $am_file\n" if $verbose;

    my $saw_bk = 0;
    my $was_rule = 0;
    my $spacing = '';
    my $comment = '';
    my $last_var_name = '';
    my $blank = 0;

    while (<AM_FILE>)
    {
	if (/$IGNORE_PATTERN/o)
	{
	    # Merely delete comments beginning with two hashes.
	}
	elsif (/$WHITE_PATTERN/o)
	{
	    # Stick a single white line before the incoming macro or rule.
	    $spacing = "\n";
	    $blank = 1;
	}
	elsif (/$COMMENT_PATTERN/o)
	{
	    # Stick comments before the incoming macro or rule.  Make
	    # sure a blank line preceeds first block of comments.
	    $spacing = "\n" unless $blank;
	    $blank = 1;
	    $comment .= $spacing . $_;
	    $spacing = '';
	}
	else
	{
	    last;
	}
    }

    $output_vars .= $comment . "\n";
    $comment = '';
    $spacing = "\n";
    my $source_suffix_pattern = '';

    my $is_ok_macro = 0;
    while ($_)
    {
	$_ .= "\n"
	    unless substr ($_, -1, 1) eq "\n";

	if (/$IGNORE_PATTERN/o)
	{
	    # Merely delete comments beginning with two hashes.
	}
	elsif (/$WHITE_PATTERN/o)
	{
	    # Stick a single white line before the incoming macro or rule.
	    $spacing = "\n";
	    &am_line_error ($., "blank line following trailing backslash")
		if $saw_bk;
	}
	elsif (/$COMMENT_PATTERN/o)
	{
	    # Stick comments before the incoming macro or rule.
	    $comment .= $spacing . $_;
	    $spacing = '';
	    &am_line_error ($., "comment following trailing backslash")
		if $saw_bk;
	}
	elsif ($saw_bk)
	{
	    if ($was_rule)
	    {
		$output_trailer .= join ('', @conditional_stack) . $_;
		$saw_bk = /\\$/;
	    }
	    else
	    {
		$saw_bk = /\\$/;
		# Chop newline and backslash if this line is
		# continued.  ensure trailing whitespace exists.
		chop if $saw_bk;
		chop if $saw_bk;
		$contents{$last_var_name} .= ' '
		    unless $contents{$last_var_name} =~ /\s$/;
		$contents{$last_var_name} .= $_;
		if (@conditional_stack)
		{
		    $conditional{$last_var_name} .= &quote_cond_val ($_);
		}
	    }
	}
	elsif (/$IF_PATTERN/o)
	{
	    &am_line_error ($., "$1 does not appear in AM_CONDITIONAL")
		if (! $configure_cond{$1});
	    push (@conditional_stack, "\@" . $1 . "_TRUE\@");
	}
	elsif (/$ELSE_PATTERN/o)
	{
	    if (! @conditional_stack)
	    {
		&am_line_error ($., "else without if");
	    }
	    elsif ($conditional_stack[$#conditional_stack] =~ /_FALSE\@$/)
	    {
		&am_line_error ($., "else after else");
	    }
	    else
	    {
		$conditional_stack[$#conditional_stack]
		    =~ s/_TRUE\@$/_FALSE\@/;
	    }
	}
	elsif (/$ENDIF_PATTERN/o)
	{
	    if (! @conditional_stack)
	    {
		&am_line_error ($., ": endif without if");
	    }
	    else
	    {
		pop @conditional_stack;
	    }
	}
	elsif (/$RULE_PATTERN/o)
	{
	    # Found a rule.
	    $was_rule = 1;
	    if (defined $contents{$1}
		&& (@conditional_stack
		    ? ! defined $conditional{$1}
		    : defined $conditional{$1}))
	    {
		&am_line_error ($1,
				"$1 defined both conditionally and unconditionally");
	    }
	    # Value here doesn't matter; for targets we only note
	    # existence.
	    $contents{$1} = 1;
	    $targets{$1} = 1;
	    my $cond_string = join ('', @conditional_stack);
	    if (@conditional_stack)
	    {
		if ($conditional{$1})
		{
		    &check_ambiguous_conditional ($1, $cond_string);
		    $conditional{$1} .= ' ';
		}
		else
		{
		    $conditional{$1} = '';
		}
		$conditional{$1} .= $cond_string . ' 1';
	    }
	    $content_lines{$1} = $.;
	    $output_trailer .= $comment . $spacing . $cond_string . $_;
	    $comment = $spacing = '';
	    $saw_bk = /\\$/;

	    # Check the rule for being a suffix rule. If so, store in
	    # a hash.

	    my $source_suffix;
	    my $object_suffix;

	    if (($source_suffix, $object_suffix) = ($1 =~ $SUFFIX_RULE_PATTERN)) 

	    {
	      $suffix_rules{$source_suffix} = $object_suffix;
	      print "Sources ending in .$source_suffix become .$object_suffix\n" 
if $verbose;
	      $source_suffix_pattern = "(" . join('|', keys %suffix_rules) . ")";
	    }

	    # FIXME: make sure both suffixes are in SUFFIXES? Or set
	    # SUFFIXES from suffix_rules?
	}
	elsif (($is_ok_macro = /$MACRO_PATTERN/o)
	       || /$BOGUS_MACRO_PATTERN/o)
	{
	    # Found a macro definition.
	    $was_rule = 0;
	    $last_var_name = $1;
	    if (defined $contents{$1}
		&& (@conditional_stack
		    ? ! defined $conditional{$1}
		    : defined $conditional{$1}))
	    {
		&am_line_error ($1,
				"$1 defined both conditionally and unconditionally");
	    }
	    my $value;
	    if ($3 ne '' && substr ($3, -1) eq "\\")
	    {
		$value = substr ($3, 0, length ($3) - 1);
	    }
	    else
	    {
		$value = $3;
	    }
	    my $type = $2;
	    if ($type eq '+')
	    {
		if (! defined $contents{$last_var_name}
		    && defined $configure_vars{$last_var_name})
		{
		    $contents{$last_var_name} = '@' . $last_var_name . '@';
		}
		$contents{$last_var_name} .= ' ' . $value;
	    }
	    else
	    {
		$contents{$last_var_name} = $value;
		# The first assignment to a macro sets the line
		# number.  Ideally I suppose we would associate line
		# numbers with random bits of text.
		$content_lines{$last_var_name} = $.;
	    }
	    my $cond_string = join ('', @conditional_stack);
	    if (@conditional_stack)
	    {
		my $found = 0;
		my $val;
		if ($conditional{$last_var_name})
		{
		    if ($type eq '+')
		    {
			# If we're adding to the conditional, and it
			# exists, then we might want to simply replace
			# the old value with the new one.
			my (@new_vals, @cond_vals);
			@cond_vals = split (' ', $conditional{$last_var_name});
			while (@cond_vals)
			{
			    $vcond = shift (@cond_vals);
			    push (@new_vals, $vcond);
			    if (&conditional_same ($vcond, $cond_string))
			    {
				$found = 1;
				$val = (&unquote_cond_val (shift (@cond_vals))
					. ' ' . $value);
				push (@new_vals, &quote_cond_val ($val));
			    }
			    else
			    {
				push (@new_vals, shift (@cond_vals));
			    }
			}
			if ($found)
			{
			    $conditional{$last_var_name}
			        = join (' ', @new_vals);
			}
		    }

		    if (! $found)
		    {
			&check_ambiguous_conditional ($last_var_name,
						      $cond_string);
			$conditional{$last_var_name} .= ' ';
			$val = $value;
		    }
		}
		else
		{
		    $conditional{$last_var_name} = '';
		    $val = $contents{$last_var_name};
		}
		if (! $found)
		{
		    $conditional{$last_var_name} .= ($cond_string
						     . ' '
						     . &quote_cond_val ($val));
		}
	    }
	    # FIXME: this doesn't always work correctly; it will group
	    # all comments for a given variable, no matter where
	    # defined.
	    $am_vars{$last_var_name} = $comment . $spacing;
	    $def_type{$last_var_name} = ($type eq ':') ? ':' : '';
	    push (@var_list, $last_var_name);
	    $comment = $spacing = '';
	    $saw_bk = /\\$/;

	    # Error if bogus.
	    &am_line_error ($., "bad macro name \`$last_var_name'")
		if ! $is_ok_macro;
	}
        elsif (/$INCLUDE_PATTERN/o)
        {
            my ($path) = $1;

            if ($path =~ s/^\$\(top_srcdir\)\///)
            {
                push (@include_stack, "\$\(top_srcdir\)/$path");
            }
            else
            {
                $path =~ s/\$\(srcdir\)\///;
                push (@include_stack, "\$\(srcdir\)/$path");
                $path = $relative_dir . "/" . $path;
            }
            &read_am_file ($path);
        }
	else
        {
	    # This isn't an error; it is probably a continued rule.
	    # In fact, this is what we assume.
	    $was_rule = 1;
	    $output_trailer .= ($comment . $spacing
				. join ('', @conditional_stack) . $_);
	    $comment = $spacing = '';
	    $saw_bk = /\\$/;
	}

	$_ = <AM_FILE>;
    }

    close(AM_FILE);
    $output_trailer .= $comment;

    &am_error ("unterminated conditionals: " . join (' ', @conditional_stack))
	if (@conditional_stack);
}

sub initialize_per_input {
    # These two variables are used when generating each Makefile.in.
    # They hold the Makefile.in until it is ready to be printed.
    #$output_rules = '';
    $output_vars = '';
    $output_trailer = '';
    #$output_all = '';
    #$output_header = '';

    # Suffixes found during a run.
    #@suffixes = ();

    # This holds the contents of a Makefile.am, as parsed by
    # read_am_file.
    %contents = ();

    # This holds the names which are targets.  These also appear in
    # %contents.
    %targets = ();

    # For a variable or target which is defined conditionally, this
    # holds an array of the conditional values.  The array is composed
    # of pairs of condition strings (the variables which configure
    # will substitute) and values (the value of a target is
    # meaningless).  For an unconditional variable, this is empty.
    %conditional = ();

    # This holds the line numbers at which various elements of
    # %contents are defined.
    %content_lines = ();

    # This holds a 1 if a particular variable was examined.
    %content_seen = ();

    # This is the conditional stack.
    @conditional_stack = ();

    # This holds the set of included files.
    @include_stack = ();

    # This holds the "relative directory" of the current Makefile.in.
    # Eg for src/Makefile.in, this is "src".
    $relative_dir = '';

    # This holds a list of files that are included in the
    # distribution.
    #%dist_common = ();

    # List of dependencies for the obvious targets.
    #@install_data = ();
    #@install_exec = ();
    #@uninstall = ();
    #@installdirs = ();

    #@info = ();
    #@dvi = ();
    #@all = ();
    #@check = ();
    #@check_tests = ();
    #@installcheck = ();
    #@clean = ();

    #@phony = ();

    # A list of files deleted by `maintainer-clean'.
    #@maintainer_clean_files = ();

    # These are pretty obvious, too.  They are used to define the
    # SOURCES and OBJECTS variables.
    #@sources = ();
    #@objects = ();

    # These variables track inclusion of various compile-related .am
    # files.  $included_generic_compile is TRUE if the basic code has
    # been included.  $included_knr_compile is TRUE if the ansi2knr
    # code has been included.  $included_libtool_compile is TRUE if
    # libtool support has been included.
    #$included_generic_compile = 0;
    #$included_knr_compile = 0;
    #$included_libtool_compile = 0;

    # TRUE if install targets should work recursively.
    #$recursive_install = 0;

    # All .P files.
    #%dep_files = ();

    # Strictness levels.
    #$strictness = $default_strictness;
    #$strictness_name = $default_strictness_name;

    # Options from AUTOMAKE_OPTIONS.
    #%options = ();

    # Whether or not dependencies are handled.  Can be further changed
    # in handle_options.
    #$use_dependencies = $cmdline_use_dependencies;

    # Per Makefile.am.
    #$local_maint_charset = $maint_charset;

    # All yacc and lex source filenames for this directory.  Use
    # filenames instead of raw count so that multiple instances are
    # counted correctly (eg one yacc file can appear in multiple
    # programs without harm).
    #%yacc_sources = ();
    #%lex_sources = ();

    # This is a list of all targets to run during "make dist".
    #@dist_targets = ();

    # Keys in this hash are the basenames of files which must depend
    # on ansi2knr.
    #%de_ansi_files = ();

    # This maps the source extension of a suffix rule to its
    # corresponding output extension.
    %suffix_rules = ();

    # This is the name of the recursive `all' target to use.
    #$all_target = 'all-recursive';

    # This keeps track of which extensions we've seen (that we care
    # about).
    #%extension_seen = ();

    # This is random scratch space for the language finish functions.
    # Don't randomly overwrite it; examine other uses of keys first.
    #%language_scratch = ();
}

# Quote a value in order to put it in $conditional.  We need to quote
# spaces, and we need to handle null strings, so that we can later
# retrieve values by splitting on space.
sub quote_cond_val
{
    my ($val) = @_;
    $val =~ s/ /\001/g;
    $val =~ s/\t/\003/g;
    $val = "\002" if $val eq '';
    return $val;
}

# See if a conditional is true.  Both arguments are conditional
# strings.  This returns true if the first conditional is true when
# the second conditional is true.
sub conditional_true_when
{
    my ($cond, $when) = @_;

    # Check the easy case first.
    if ($cond eq $when)
    {
	return 1;
    }

    # Check each component of $cond, which looks @COND1@@COND2@.
    foreach my $comp (split ('@', $cond))
    {
	# The way we split will give null strings between each
	# condition.
	next if ! $comp;

	if (index ($when, '@' . $comp . '@') == -1)
	{
	    return 0;
	}
    }

    return 1;
}

# Check for an ambiguous conditional.  This is called when a variable
# or target is being defined conditionally.  If we already know about
# a definition that is true under the same conditions, then we have an
# ambiguity.
sub check_ambiguous_conditional
{
    my ($var_name, $cond) = @_;
    my (@cond_vals) = split (' ', $conditional{$var_name});
    while (@cond_vals)
    {
	my ($vcond) = shift (@cond_vals);
	shift (@cond_vals);
	if (&conditional_true_when ($vcond, $cond)
	    || &conditional_true_when ($cond, $vcond))
	{
	    print "$var_name multiply defined in condition";
	}
    }
}

sub am_line_error
{
    my ($symbol, @args) = @_;

    if ($symbol && "$symbol" ne '-1')
    {
	my ($file) = "${am_file}";

	if ($symbol =~ /^\d+$/)
	{
	    # SYMBOL is a line number, so just add the colon.
	    $file .= ':' . $symbol;
	}
	elsif (defined $content_lines{$symbol})
	{
	    # SYMBOL is a variable defined in Makefile.am, so add the
	    # line number we saved from there.
	    $file .= ':' . $content_lines{$symbol};
	}
	elsif (defined $configure_vars{$symbol})
	{
	    # SYMBOL is a variable defined in configure.in, so add the
	    # appropriate line number.
	    $file = $configure_vars{$symbol};
	}
	else
	{
	    # Couldn't find the line number.
	}
	warn $file, ": ", join (' ', @args), "\n";
	$exit_status = 1;
    }
    else
    {
	&am_error (@args);
    }
}

sub generate_dsw
{
    my $name = shift;
    my $dsw_name = $name . '.dsw';
    open(DSW, ">$dsw_name")
	|| die "Can't create $dsw_name: $!\n";

    print "Creating $dsw_name\n" if $verbose;

    print DSW <<"EOF";
Microsoft Developer Studio Workspace File, Format Version 6.00\r
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!\r
\r
###############################################################################\r
\r
EOF
    print DSW 'Project: ', "\"$name\"=\".\\", $name, ".dsp\" - Package Owner=
<4>\r\n";
    print DSW <<"EOF";
\r
Package=<5>\r
{{{\r
}}}\r
\r
Package=<4>\r
{{{\r
}}}\r
\r
###############################################################################\r
\r
Global:\r
\r
Package=<5>\r
{{{\r
}}}\r
\r
Package=<3>\r
{{{\r
}}}\r
\r
###############################################################################\r
\r
EOF
    close(DSW);
}

sub console_app_dsp_init
{
    my $name = shift;
    my $dsp_name = $name . '.dsp';

    open(DSP, ">$dsp_name")
	|| die "Can't create $dsp_name: $!\n";

    print "Creating $dsp_name\n" if $verbose;

    print DSP <<"EOF";
# Microsoft Developer Studio Project File - Name="$name" - Package Owner=
<4>\r
# Microsoft Developer Studio Generated Build File, Format Version 6.00\r
# ** DO NOT EDIT **\r
\r
# TARGTYPE "Win32 (x86) Console Application" 0x0103\r
\r
CFG=$name - Win32 Debug\r
!MESSAGE This is not a valid makefile. To build this project using NMAKE,\r
!MESSAGE use the Export Makefile command and run\r
!MESSAGE \r
!MESSAGE NMAKE /f "$name.mak".\r
!MESSAGE \r
!MESSAGE You can specify a configuration when running NMAKE\r
!MESSAGE by defining the macro CFG on the command line. For example:\r
!MESSAGE \r
!MESSAGE NMAKE /f "$name.mak" CFG="$name - Win32 Debug"\r
!MESSAGE \r
!MESSAGE Possible choices for configuration are:\r
!MESSAGE \r
!MESSAGE "$name - Win32 Release" (based on "Win32 (x86) Console Application")\r
!MESSAGE "$name - Win32 Debug" (based on "Win32 (x86) Console Application")\r
!MESSAGE \r
\r
# Begin Project\r
# PROP AllowPerConfigDependencies 0\r
# PROP Scc_ProjName ""\r
# PROP Scc_LocalPath ""\r
CPP=cl.exe\r
RSC=rc.exe\r
\r
!IF  "\$(CFG)" == "$name - Win32 Release"\r
\r
# PROP BASE Use_MFC 0\r
# PROP BASE Use_Debug_Libraries 0\r
# PROP BASE Output_Dir "Release"\r
# PROP BASE Intermediate_Dir "Release"\r
# PROP BASE Target_Dir ""\r
# PROP Use_MFC 0\r
# PROP Use_Debug_Libraries 0\r
# PROP Output_Dir "Release"\r
# PROP Intermediate_Dir "Release"\r
# PROP Target_Dir ""\r
# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D 
"_MBCS" /YX /FD /c\r
# ADD CPP /nologo /W3 /GX /O2 /I ".\\src" /I ".\\src\\Include" /I "\\usr\\include" 
/D "NDEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "HAVE_CONFIG_H" /FD /c\r
# SUBTRACT CPP /YX\r
# ADD BASE RSC /l 0xc09 /d "NDEBUG"\r
# ADD RSC /l 0xc09 /d "NDEBUG"\r
BSC32=bscmake.exe\r
# ADD BASE BSC32 /nologo\r
# ADD BSC32 /nologo\r
LINK32=link.exe\r
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib 
advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib 
kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib 
shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo 
/subsystem:console /machine:I386\r
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib 
advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib 
kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib 
shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo 
/subsystem:console /machine:I386\r
\r
!ELSEIF  "\$(CFG)" == "$name - Win32 Debug"\r
\r
# PROP BASE Use_MFC 0\r
# PROP BASE Use_Debug_Libraries 1\r
# PROP BASE Output_Dir "Debug"\r
# PROP BASE Intermediate_Dir "Debug"\r
# PROP BASE Target_Dir ""\r
# PROP Use_MFC 0\r
# PROP Use_Debug_Libraries 1\r
# PROP Output_Dir "Debug"\r
# PROP Intermediate_Dir "Debug"\r
# PROP Ignore_Export_Lib 0\r
# PROP Target_Dir ""\r
# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" 
/D "_MBCS" /YX /FD /GZ /c\r
# ADD CPP /nologo /W3 /Gm /GX /ZI /Od /I ".\\src" /I ".\\src\\Include" /I 
"\\usr\\include" /D "_DEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "HAVE_CONFIG_H" 
/FR /FD /GZ /c\r
# SUBTRACT CPP /YX\r
# ADD BASE RSC /l 0xc09 /d "_DEBUG"\r
# ADD RSC /l 0xc09 /d "_DEBUG"\r
BSC32=bscmake.exe\r
# ADD BASE BSC32 /nologo\r
# ADD BSC32 /nologo\r
LINK32=link.exe\r
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib 
advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib 
kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib 
shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo 
/subsystem:console /debug /machine:I386 /pdbtype:sept\r
# ADD LINK32 kernel32.lib user32.lib winspool.lib comdlg32.lib gdi32.lib 
shell32.lib glut32.lib wsock32.lib simgear.lib fnt.lib pui.lib sg.lib sl.lib 
ssg.lib mk4vc60_d.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept 
/libpath:"\\lib" /libpath:"\\lib\\simgear" /libpath:"\\lib\\plib"\r
\r
!ENDIF \r
\r
# Begin Target\r
\r
# Name "$name - Win32 Release"\r
# Name "$name - Win32 Debug"\r
# Begin Group "Source Files"\r
\r
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"\r
# End Group\r
# Begin Group "Header Files"\r
\r
# PROP Default_Filter "h;hpp;hxx;hm;inl"\r
# End Group\r
# Begin Group "Resource Files"\r
\r
# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"\r
# End Group\r
EOF

    close(DSP);
}

sub static_lib_dsp_init
{
    my $name = shift;
    my $dsp_name = $name . '.dsp';

    open(DSP, ">$dsp_name")
	|| die "Can't create $dsp_name: $!\n";

    print "Creating $dsp_name\n" if $verbose;

    print DSP <<"EOF";
# Microsoft Developer Studio Project File - Name="$name" - Package Owner=
<4>\r
# Microsoft Developer Studio Generated Build File, Format Version 6.00\r
# ** DO NOT EDIT **\r
\r
# TARGTYPE "Win32 (x86) Static Library" 0x0104\r
\r
CFG=$name - Win32 Debug\r
!MESSAGE This is not a valid makefile. To build this project using NMAKE,\r
!MESSAGE use the Export Makefile command and run\r
!MESSAGE \r
!MESSAGE NMAKE /f "$name.mak".\r
!MESSAGE \r
!MESSAGE You can specify a configuration when running NMAKE\r
!MESSAGE by defining the macro CFG on the command line. For example:\r
!MESSAGE \r
!MESSAGE NMAKE /f "$name.mak" CFG="$name - Win32 Debug"\r
!MESSAGE \r
!MESSAGE Possible choices for configuration are:\r
!MESSAGE \r
!MESSAGE "$name - Win32 Release" (based on "Win32 (x86) Static Library")\r
!MESSAGE "$name - Win32 Debug" (based on "Win32 (x86) Static Library")\r
!MESSAGE \r
\r
# Begin Project\r
# PROP AllowPerConfigDependencies 0\r
# PROP Scc_ProjName ""\r
# PROP Scc_LocalPath ""\r
CPP=cl.exe\r
RSC=rc.exe\r
\r
!IF  "\$(CFG)" == "$name - Win32 Release"\r
\r
# PROP BASE Use_MFC 0\r
# PROP BASE Use_Debug_Libraries 0\r
# PROP BASE Output_Dir "Release"\r
# PROP BASE Intermediate_Dir "Release"\r
# PROP BASE Target_Dir ""\r
# PROP Use_MFC 0\r
# PROP Use_Debug_Libraries 0\r
# PROP Output_Dir "Release"\r
# PROP Intermediate_Dir "Release"\r
# PROP Target_Dir ""\r
# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /YX 
/FD /c\r
# ADD CPP /nologo /W3 /GX /O2 /I "\\usr\\include" /D "NDEBUG" /D "WIN32" 
/D "_MBCS" /D "HAVE_CONFIG_H" /FD /c\r
# ADD BASE RSC /l 0x409 /d "NDEBUG"\r
# ADD RSC /l 0x409 /d "NDEBUG"\r
BSC32=bscmake.exe\r
# ADD BASE BSC32 /nologo\r
# ADD BSC32 /nologo\r
LINK32=link.exe -lib\r
# ADD BASE LIB32 /nologo\r
# ADD LIB32 /nologo\r
\r
!ELSEIF  "\$(CFG)" == "$name - Win32 Debug"\r
\r
# PROP BASE Use_MFC 0\r
# PROP BASE Use_Debug_Libraries 1\r
# PROP BASE Output_Dir "Debug"\r
# PROP BASE Intermediate_Dir "Debug"\r
# PROP BASE Target_Dir ""\r
# PROP Use_MFC 0\r
# PROP Use_Debug_Libraries 1\r
# PROP Output_Dir "Debug"\r
# PROP Intermediate_Dir "Debug"\r
# PROP Target_Dir ""\r
# ADD BASE CPP /nologo /W3 /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" 
/YX /FD /GZ /c\r
# ADD CPP /nologo /W3 /GX /ZI /Od /I "\\usr\\include" /D "_DEBUG" /D "WIN32" 
/D "_MBCS" /D "HAVE_CONFIG_H" /FR /FD /GZ /c\r
# ADD BASE RSC /l 0x409 /d "_DEBUG"\r
# ADD RSC /l 0x409 /d "_DEBUG"\r
BSC32=bscmake.exe\r
# ADD BASE BSC32 /nologo\r
# ADD BSC32 /nologo\r
LINK32=link.exe -lib\r
# ADD BASE LIB32 /nologo\r
# ADD LIB32 /nologo\r
\r
!ENDIF \r
\r
# Begin Target\r
\r
# Name "$name - Win32 Release"\r
# Name "$name - Win32 Debug"\r
# Begin Group "Source Files"\r
\r
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"\r
# End Group\r
# Begin Group "Header Files"\r
\r
# PROP Default_Filter "h;hpp;hxx;hm;inl"\r
# End Group\r
# Begin Group "Resource Files"\r
\r
# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"\r
# End Group\r
EOF

    close(DSP);
}

sub dsp_add_source_rule {
    my ($fh,$dsp_name,$group,$file) = @_;
    print $fh "# Begin Source File\r\n";
    print $fh "\r\n";
    print $fh "SOURCE=$file\r\n";
    print $fh "\r\n";
    print $fh "!IF  \"\$(CFG)\" == \"$dsp_name - Win32 Release\"\r\n";
    print $fh "\r\n";
    print $fh "# PROP Intermediate_Dir \"Release\\$group\"\r\n";
    print $fh "\r\n";
    print $fh "!ELSEIF  \"\$(CFG)\" == \"$dsp_name - Win32 Debug\"\r\n";
    print $fh "\r\n";
    print $fh "# PROP Intermediate_Dir \"Debug\\$group\"\r\n";
    print $fh "\r\n";
    print $fh "!ENDIF \r\n";
    print $fh "\r\n";
    print $fh "# End Source File\r\n";
}

sub dsp_add_group {
    my ($dsp_name,$makefile) = @_;
    my $base_dir = './';

    initialize_per_input();
    my $relative_dir = dirname($makefile);

    read_main_am_file($makefile . '.am');

    open(DSP, ">>$dsp_name" . '.dsp')
	|| die "Can't append to $dsp_name: $!\n";

    foreach my $key (sort keys %contents) {
	if ($key =~ /^lib(.*)_a_SOURCES/) {
	    my $group = 'Lib_' . $1;
	    print DSP "# Begin Group \"$group\"\r\n";
	    print DSP "\r\n";
	    print DSP "# PROP Default_Filter \"\"\r\n";
	    my @files = split(' ', $contents{$key});
	    foreach (@files) {
		#next if /\.hx*$/; # Skip header files (.h and .hxx)

		my $file;
		my $src_dir = $base_dir . $relative_dir . '/';
		$src_dir =~ s/\//\\/g; # fixup DOS path separators

		if (/^\$\(([^\)]*)\)$/) {
		    # Found a variable.
		    my $varname = $1;
		    foreach (split(' ', $contents{$varname})) {
			$file = $src_dir . $_;
			dsp_add_source_rule(\*DSP, $dsp_name, $group, $file);
		    }
		} else {
		    $file = $src_dir . $_;
		    dsp_add_source_rule(\*DSP, $dsp_name, $group, $file);
		}
	    }

	    print DSP "# End Group\r\n";
	}
	#elsif ($key =~ /(.*)_SOURCES/) {
	elsif ($key =~ /fgfs_SOURCES/) {
	    my $group = 'main';
	    print DSP "# Begin Group \"$group\"\r\n";
	    print DSP "\r\n";
	    print DSP "# PROP Default_Filter \"\"\r\n";
	    my @files = split(' ', $contents{$key});
	    foreach (@files) {
		#next if /\.hx*$/; # Skip header files (.h and .hxx)

		my $file;
		my $src_dir = $base_dir . $relative_dir . '/';
		$src_dir =~ s/\//\\/g; # fixup DOS path separators

		dsp_add_source_rule(\*DSP, $dsp_name, $group, $src_dir . $_);
		if (0) {
		    my $f = $base_dir . $relative_dir . '/' . $_;
		    $f =~ s/\//\\/g;
		    print DSP "# Begin Source File\r\n";
		    print DSP "\r\n";
		    print DSP "SOURCE=$f\r\n";
		    print DSP "\r\n";
		    print DSP "!IF  \"\$(CFG)\" == \"$dsp_name - Win32 Release\"\r\n";
		    print DSP "\r\n";
		    print DSP "# PROP Intermediate_Dir \"Release\\$group\"\r\n";
		    print DSP "\r\n";
		    print DSP "!ELSEIF  \"\$(CFG)\" == \"$dsp_name - Win32 Debug\"\r\n";
		    print DSP "\r\n";
		    print DSP "# PROP Intermediate_Dir \"Debug\\$group\"\r\n";
		    print DSP "\r\n";
		    print DSP "!ENDIF \r\n";
		    print DSP "\r\n";
		    print DSP "# End Source File\r\n";
		}
	    }
	    print DSP "# End Group\r\n";
	}
    }
    close(DSP);
}

sub dsp_finish {
    my $dsp_name = shift;

    open(DSP, ">>$dsp_name" . '.dsp')
	|| die "Can't append to $dsp_name: $!\n";

    print DSP "# End Target\r\n";
    print DSP "# End Project\r\n";

    close(DSP);
}

# Return directory name of file.
sub dirname
{
    my ($file) = @_;
    my ($sub);

    ($sub = $file) =~ s,/+[^/]+$,,g;
    $sub = '.' if $sub eq $file;
    return $sub;
}

eof

   *************************** */

Here are two 'sample' am2dsp.cfg files -

FlightGear -
/* ===========================
type = ConsoleApplication,Multithreaded,Debug

exclude_dir = NetworkOLK
exclude_dir = Weather

exclude_file = src\GUI\net_dlg.cxx
exclude_file = src\GUI\net_dlg.hxx

include_path = ..
include_path = .\src
include_path = .\src\include
include_path = ..\SimGear
include_path = ..\SimGear\metakit-2.4.3\include
include_path = ..\SimGear\zlib-1.1.4

define = HAVE_CONFIG_H
define = FGFS
#define = FG_NDEBUG
#define = FG_NETWORK_OLK
#define = FG_JPEG_SERVER
define = FG_NEW_ENVIRONMENT
#define = FG_NEW_MOUSE
define = ENABLE_AUDIO_SUPPORT
define = ENABLE_PLIB_JOYSTICK

#add_lib = glut32.lib

lib_path = ..\plib
#add_lib = ssg
#add_lib = sg
#add_lib = pui
#add_lib = fnt
#add_lib = sl
add_lib = ul
#add_lib = ssgaux
#add_lib = net

#lib_path = ..\SimGear
#add_lib  = SimGear

#lib_path = ..\SimGear\metakit\builds
#add_lib = mk4vc60s_std_d

#add_project = ..\SimGear\SimGear.dsp

# Rule to create config.h
add_source_file = SOURCE = .\src\Include\config.h-msvc6\
\
!IF  "$(CFG)" == "FlightGear - Win32 Release"\
\
# Begin Custom Build - Creating config.h\
InputPath=.\src\Include\config.h-msvc6\
\
".\src\Include\config.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"\
	copy .\src\Include\config.h-msvc6 .\src\Include\config.h\
\
# End Custom Build\
\
!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"\
\
# Begin Custom Build - Creating config.h\
InputPath=.\src\Include\config.h-msvc6\
\
".\src\Include\config.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"\
	copy .\src\Include\config.h-msvc6 .\src\Include\config.h\
\
# End Custom Build\
\
!ENDIF\

   =========================== */

and
SimGear
/* ===========================

# default library runtime type
type = StaticLibrary,Multithreaded,

exclude_dir = threads

include_path = .
include_path = ..\..
include_path = .\SimGear
include_path = src-libs\zlib-1.1.4
include_path = ..\..\AL\openal\include


define = HAVE_CONFIG_H
define = NO_PTHREADS_DLL

# Rule to create simgear_config.h
# not functional yet ...

   =========================== */
   
 *** AND SOME SAMPLE DSP FILES ***
 FlightGear.dsp
 /* ++++++++++++
 # Microsoft Developer Studio Project File - Name="FlightGear" - Package Owner=<4>
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **

# TARGTYPE "Win32 (x86) Console Application" 0x0103

CFG=FlightGear - Win32 Debug
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
!MESSAGE use the Export Makefile command and run
!MESSAGE 
!MESSAGE NMAKE /f "FlightGear.mak".
!MESSAGE 
!MESSAGE You can specify a configuration when running NMAKE
!MESSAGE by defining the macro CFG on the command line. For example:
!MESSAGE 
!MESSAGE NMAKE /f "FlightGear.mak" CFG="FlightGear - Win32 Debug"
!MESSAGE 
!MESSAGE Possible choices for configuration are:
!MESSAGE 
!MESSAGE "FlightGear - Win32 Release" (based on "Win32 (x86) Console Application")
!MESSAGE "FlightGear - Win32 Debug" (based on "Win32 (x86) Console Application")
!MESSAGE 

# Begin Project
# PROP AllowPerConfigDependencies 0
# PROP Scc_ProjName ""
# PROP Scc_LocalPath ""
CPP=cl.exe
RSC=rc.exe

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Use_MFC 0
# PROP Use_Debug_Libraries 0
# PROP Output_Dir "Release"
# PROP Intermediate_Dir "Release"
# PROP Target_Dir ""
# ADD CPP /nologo /W3 /GX /O2 /D "NDEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /FD /c  /MTd /I ".." /I ".\src" /I ".\src\include" /I "..\SimGear" /I "..\SimGear\metakit-2.4.3\include" /I "..\SimGear\zlib-1.1.4" /D "HAVE_CONFIG_H" /D "FGFS" /D "FG_NEW_ENVIRONMENT" 
/D "ENABLE_AUDIO_SUPPORT" /D "ENABLE_PLIB_JOYSTICK"
# SUBTRACT CPP /YX
# ADD RSC /l 0xc09 /d "NDEBUG"
BSC32=bscmake.exe
# ADD BSC32 /nologo
LINK32=link.exe
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib uuid.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console 
/machine:I386 

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Use_MFC 0
# PROP Use_Debug_Libraries 1
# PROP Output_Dir "Debug"
# PROP Intermediate_Dir "Debug"
# PROP Ignore_Export_Lib 0
# PROP Target_Dir ""
# ADD CPP /nologo /W3 /Gm /GX /ZI /Od /D "_DEBUG" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /FR /FD /GZ /c  /MTd /I ".." /I ".\src" /I ".\src\include" /I "..\SimGear" /I "..\SimGear\metakit-2.4.3\include" /I "..\SimGear\zlib-1.1.4" /D "HAVE_CONFIG_H" /D "FGFS" /D 
"FG_NEW_ENVIRONMENT" /D "ENABLE_AUDIO_SUPPORT" /D "ENABLE_PLIB_JOYSTICK"
# ADD RSC /l 0xc09 /d "_DEBUG"
BSC32=bscmake.exe
# ADD BSC32 /nologo
LINK32=link.exe
# ADD LINK32 kernel32.lib user32.lib winspool.lib comdlg32.lib gdi32.lib shell32.lib wsock32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept 

!ENDIF 

# Begin Target

# Name "FlightGear - Win32 Release"
# Name "FlightGear - Win32 Debug"
# Begin Group "Lib_Aircraft"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\src\Aircraft\aircraft.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Aircraft"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Aircraft"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Aircraft\aircraft.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Aircraft"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Aircraft"

!ENDIF 

# End Source File
# End Group
# Begin Group "Lib_Airports"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\src\Airports\apt_loader.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Airports"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Airports"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Airports\apt_loader.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Airports"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Airports"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Airports\runways.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Airports"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Airports"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Airports\runways.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Airports"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Airports"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Airports\simple.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Airports"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Airports"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Airports\simple.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Airports"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Airports"

!ENDIF 

# End Source File
# End Group
# Begin Group "Lib_ATC"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\src\ATC\ATC.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_ATC"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_ATC"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\ATC\ATC.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_ATC"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_ATC"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\ATC\atis.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_ATC"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_ATC"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\ATC\atis.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_ATC"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_ATC"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\ATC\tower.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_ATC"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_ATC"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\ATC\tower.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_ATC"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_ATC"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\ATC\approach.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_ATC"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_ATC"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\ATC\approach.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_ATC"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_ATC"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\ATC\ground.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_ATC"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_ATC"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\ATC\ground.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_ATC"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_ATC"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\ATC\commlist.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_ATC"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_ATC"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\ATC\commlist.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_ATC"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_ATC"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\ATC\ATCDialog.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_ATC"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_ATC"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\ATC\ATCDialog.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_ATC"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_ATC"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\ATC\ATCdisplay.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_ATC"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_ATC"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\ATC\ATCdisplay.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_ATC"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_ATC"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\ATC\ATCVoice.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_ATC"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_ATC"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\ATC\ATCVoice.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_ATC"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_ATC"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\ATC\ATCmgr.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_ATC"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_ATC"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\ATC\ATCmgr.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_ATC"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_ATC"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\ATC\ATCutils.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_ATC"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_ATC"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\ATC\ATCutils.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_ATC"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_ATC"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\ATC\ATCProjection.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_ATC"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_ATC"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\ATC\ATCProjection.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_ATC"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_ATC"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\ATC\AIMgr.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_ATC"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_ATC"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\ATC\AIMgr.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_ATC"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_ATC"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\ATC\AIEntity.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_ATC"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_ATC"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\ATC\AIEntity.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_ATC"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_ATC"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\ATC\AIPlane.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_ATC"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_ATC"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\ATC\AIPlane.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_ATC"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_ATC"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\ATC\AILocalTraffic.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_ATC"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_ATC"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\ATC\AILocalTraffic.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_ATC"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_ATC"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\ATC\AIGAVFRTraffic.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_ATC"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_ATC"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\ATC\AIGAVFRTraffic.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_ATC"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_ATC"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\ATC\transmission.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_ATC"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_ATC"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\ATC\transmission.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_ATC"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_ATC"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\ATC\transmissionlist.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_ATC"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_ATC"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\ATC\transmissionlist.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_ATC"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_ATC"

!ENDIF 

# End Source File
# End Group
# Begin Group "Lib_Autopilot"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\src\Autopilot\auto_gui.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Autopilot"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Autopilot"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Autopilot\auto_gui.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Autopilot"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Autopilot"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Autopilot\route_mgr.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Autopilot"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Autopilot"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Autopilot\route_mgr.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Autopilot"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Autopilot"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Autopilot\xmlauto.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Autopilot"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Autopilot"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Autopilot\xmlauto.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Autopilot"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Autopilot"

!ENDIF 

# End Source File
# End Group
# Begin Group "Lib_Cockpit"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\src\Cockpit\cockpit.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Cockpit"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Cockpit"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Cockpit\cockpit.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Cockpit"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Cockpit"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Cockpit\hud.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Cockpit"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Cockpit"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Cockpit\hud.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Cockpit"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Cockpit"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Cockpit\hud_opts.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Cockpit"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Cockpit"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Cockpit\hud_card.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Cockpit"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Cockpit"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Cockpit\hud_dnst.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Cockpit"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Cockpit"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Cockpit\hud_gaug.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Cockpit"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Cockpit"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Cockpit\hud_inst.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Cockpit"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Cockpit"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Cockpit\hud_labl.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Cockpit"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Cockpit"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Cockpit\hud_ladr.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Cockpit"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Cockpit"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Cockpit\hud_lat.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Cockpit"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Cockpit"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Cockpit\hud_lon.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Cockpit"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Cockpit"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Cockpit\hud_rwy.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Cockpit"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Cockpit"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Cockpit\hud_scal.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Cockpit"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Cockpit"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Cockpit\hud_tbi.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Cockpit"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Cockpit"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Cockpit\panel.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Cockpit"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Cockpit"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Cockpit\panel.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Cockpit"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Cockpit"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Cockpit\panel_io.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Cockpit"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Cockpit"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Cockpit\panel_io.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Cockpit"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Cockpit"

!ENDIF 

# End Source File
# End Group
# Begin Group "Lib_Built_in"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\src\Cockpit\built_in\FGMagRibbon.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Built_in"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Built_in"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Cockpit\built_in\FGMagRibbon.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Built_in"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Built_in"

!ENDIF 

# End Source File
# End Group
# Begin Group "Lib_Controls"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\src\Controls\controls.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Controls"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Controls"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Controls\controls.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Controls"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Controls"

!ENDIF 

# End Source File
# End Group
# Begin Group "Lib_Environment"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\src\Environment\environment.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Environment"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Environment"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Environment\environment.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Environment"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Environment"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Environment\environment_mgr.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Environment"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Environment"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Environment\environment_mgr.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Environment"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Environment"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Environment\environment_ctrl.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Environment"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Environment"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Environment\environment_ctrl.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Environment"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Environment"

!ENDIF 

# End Source File
# End Group
# Begin Group "Lib_Balloon"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\src\FDM\Balloon\BalloonSim.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Balloon"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Balloon"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\Balloon\BalloonSim.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Balloon"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Balloon"

!ENDIF 

# End Source File
# End Group
# Begin Group "Lib_ExternalNet"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\src\FDM\ExternalNet\ExternalNet.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_ExternalNet"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_ExternalNet"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\ExternalNet\ExternalNet.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_ExternalNet"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_ExternalNet"

!ENDIF 

# End Source File
# End Group
# Begin Group "Lib_ExternalPipe"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\src\FDM\ExternalPipe\ExternalPipe.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_ExternalPipe"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_ExternalPipe"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\ExternalPipe\ExternalPipe.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_ExternalPipe"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_ExternalPipe"

!ENDIF 

# End Source File
# End Group
# Begin Group "Lib_JSBSim"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGAerodynamics.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGAerodynamics.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGAircraft.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGAircraft.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGAtmosphere.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGAtmosphere.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGAuxiliary.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGAuxiliary.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGCoefficient.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGCoefficient.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGColumnVector3.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGColumnVector3.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGConfigFile.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGConfigFile.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGFCS.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGFCS.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGFDMExec.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGFDMExec.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGFactorGroup.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGFactorGroup.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGForce.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGForce.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGGroundReactions.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGGroundReactions.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGInertial.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGInertial.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGInitialCondition.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGInitialCondition.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGJSBBase.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGJSBBase.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGLGear.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGLGear.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGMassBalance.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGMassBalance.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGMatrix33.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGMatrix33.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGModel.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGModel.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGNozzle.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGNozzle.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGOutput.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGOutput.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGPiston.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGPiston.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGPropeller.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGPropeller.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGPropulsion.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGPropulsion.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGRotor.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGRotor.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGRocket.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGRocket.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGScript.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGScript.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGState.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGState.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGTable.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGTable.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGThruster.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGThruster.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGTrim.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGTrim.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGTrimAxis.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGTrimAxis.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGTurbine.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGTurbine.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGEngine.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGEngine.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGTank.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGTank.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGfdmSocket.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGfdmSocket.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGTurbine.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGTurbine.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGPropertyManager.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGPropertyManager.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGPropagate.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGPropagate.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGLocation.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGLocation.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGQuaternion.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGQuaternion.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGElectric.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\FGElectric.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\JSBSim.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\JSBSim.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_JSBSim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_JSBSim"

!ENDIF 

# End Source File
# End Group
# Begin Group "Lib_filtersjb"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\src\FDM\JSBSim\filtersjb\FGDeadBand.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_filtersjb"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_filtersjb"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\filtersjb\FGDeadBand.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_filtersjb"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_filtersjb"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\filtersjb\FGFCSComponent.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_filtersjb"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_filtersjb"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\filtersjb\FGFCSComponent.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_filtersjb"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_filtersjb"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\filtersjb\FGFilter.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_filtersjb"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_filtersjb"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\filtersjb\FGFilter.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_filtersjb"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_filtersjb"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\filtersjb\FGGain.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_filtersjb"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_filtersjb"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\filtersjb\FGGain.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_filtersjb"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_filtersjb"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\filtersjb\FGGradient.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_filtersjb"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_filtersjb"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\filtersjb\FGGradient.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_filtersjb"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_filtersjb"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\filtersjb\FGKinemat.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_filtersjb"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_filtersjb"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\filtersjb\FGKinemat.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_filtersjb"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_filtersjb"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\filtersjb\FGSummer.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_filtersjb"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_filtersjb"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\filtersjb\FGSummer.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_filtersjb"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_filtersjb"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\filtersjb\FGSwitch.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_filtersjb"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_filtersjb"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\filtersjb\FGSwitch.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_filtersjb"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_filtersjb"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\filtersjb\FGCondition.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_filtersjb"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_filtersjb"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\JSBSim\filtersjb\FGCondition.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_filtersjb"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_filtersjb"

!ENDIF 

# End Source File
# End Group
# Begin Group "Lib_LaRCsim"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\src\FDM\LaRCsim\LaRCsim.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_LaRCsim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_LaRCsim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\LaRCsim\LaRCsim.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_LaRCsim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_LaRCsim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\LaRCsim\LaRCsimIC.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_LaRCsim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_LaRCsim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\LaRCsim\LaRCsimIC.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_LaRCsim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_LaRCsim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\LaRCsim\IO360.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_LaRCsim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_LaRCsim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\LaRCsim\IO360.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_LaRCsim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_LaRCsim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\LaRCsim\atmos_62.c

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_LaRCsim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_LaRCsim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\LaRCsim\atmos_62.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_LaRCsim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_LaRCsim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\LaRCsim\default_model_routines.c

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_LaRCsim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_LaRCsim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\LaRCsim\default_model_routines.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_LaRCsim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_LaRCsim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\LaRCsim\ls_accel.c

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_LaRCsim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_LaRCsim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\LaRCsim\ls_accel.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_LaRCsim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_LaRCsim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\LaRCsim\ls_aux.c

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_LaRCsim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_LaRCsim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\LaRCsim\ls_aux.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_LaRCsim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_LaRCsim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\LaRCsim\ls_cockpit.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_LaRCsim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_LaRCsim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\LaRCsim\ls_constants.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_LaRCsim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_LaRCsim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\LaRCsim\ls_generic.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_LaRCsim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_LaRCsim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\LaRCsim\ls_geodesy.c

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_LaRCsim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_LaRCsim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\LaRCsim\ls_geodesy.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_LaRCsim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_LaRCsim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\LaRCsim\ls_gravity.c

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_LaRCsim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_LaRCsim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\LaRCsim\ls_gravity.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_LaRCsim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_LaRCsim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\LaRCsim\ls_init.c

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_LaRCsim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_LaRCsim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\LaRCsim\ls_init.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_LaRCsim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_LaRCsim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\LaRCsim\ls_matrix.c

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_LaRCsim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_LaRCsim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\LaRCsim\ls_matrix.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_LaRCsim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_LaRCsim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\LaRCsim\ls_model.c

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_LaRCsim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_LaRCsim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\LaRCsim\ls_model.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_LaRCsim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_LaRCsim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\LaRCsim\ls_sim_control.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_LaRCsim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_LaRCsim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\LaRCsim\ls_step.c

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_LaRCsim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_LaRCsim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\LaRCsim\ls_step.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_LaRCsim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_LaRCsim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\LaRCsim\ls_sym.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_LaRCsim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_LaRCsim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\LaRCsim\ls_types.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_LaRCsim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_LaRCsim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\LaRCsim\c172_aero.c

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_LaRCsim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_LaRCsim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\LaRCsim\c172_engine.c

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_LaRCsim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_LaRCsim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\LaRCsim\c172_gear.c

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_LaRCsim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_LaRCsim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\LaRCsim\c172_init.c

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_LaRCsim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_LaRCsim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\LaRCsim\basic_init.c

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_LaRCsim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_LaRCsim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\LaRCsim\basic_init.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_LaRCsim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_LaRCsim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\LaRCsim\basic_aero.c

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_LaRCsim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_LaRCsim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\LaRCsim\basic_aero.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_LaRCsim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_LaRCsim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\LaRCsim\basic_engine.c

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_LaRCsim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_LaRCsim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\LaRCsim\basic_gear.c

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_LaRCsim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_LaRCsim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\LaRCsim\navion_init.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_LaRCsim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_LaRCsim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\LaRCsim\navion_aero.c

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_LaRCsim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_LaRCsim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\LaRCsim\navion_engine.c

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_LaRCsim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_LaRCsim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\LaRCsim\navion_gear.c

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_LaRCsim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_LaRCsim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\LaRCsim\navion_init.c

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_LaRCsim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_LaRCsim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\LaRCsim\uiuc_aero.c

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_LaRCsim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_LaRCsim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\LaRCsim\cherokee_aero.c

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_LaRCsim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_LaRCsim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\LaRCsim\cherokee_engine.c

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_LaRCsim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_LaRCsim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\LaRCsim\cherokee_gear.c

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_LaRCsim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_LaRCsim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\LaRCsim\cherokee_init.c

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_LaRCsim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_LaRCsim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\LaRCsim\ls_interface.c

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_LaRCsim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_LaRCsim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\LaRCsim\ls_interface.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_LaRCsim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_LaRCsim"

!ENDIF 

# End Source File
# End Group
# Begin Group "Lib_SPFDM"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\src\FDM\SP\ADA.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_SPFDM"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_SPFDM"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\SP\ADA.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_SPFDM"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_SPFDM"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\SP\ACMS.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_SPFDM"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_SPFDM"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\SP\ACMS.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_SPFDM"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_SPFDM"

!ENDIF 

# End Source File
# End Group
# Begin Group "Lib_UIUCModel"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_1DdataFileReader.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_1DdataFileReader.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_1Dinterpolation.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_1Dinterpolation.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_2DdataFileReader.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_2DdataFileReader.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_2Dinterpolation.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_2Dinterpolation.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_3Dinterpolation.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_3Dinterpolation.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_aerodeflections.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_aerodeflections.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_aircraftdir.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_aircraft.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_alh_ap.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_alh_ap.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_auto_pilot.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_auto_pilot.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_betaprobe.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_betaprobe.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_coef_drag.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_coef_drag.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_coef_lift.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_coef_lift.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_coef_pitch.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_coef_pitch.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_coef_roll.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_coef_roll.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_coef_sideforce.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_coef_sideforce.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_coef_yaw.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_coef_yaw.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_coefficients.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_coefficients.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_controlInput.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_controlInput.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_convert.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_convert.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_engine.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_engine.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_flapdata.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_flapdata.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_find_position.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_find_position.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_fog.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_fog.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_gear.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_gear.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_get_flapper.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_get_flapper.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_getwind.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_getwind.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_hh_ap.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_hh_ap.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_ice.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_ice.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_iceboot.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_iceboot.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_iced_nonlin.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_iced_nonlin.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_icing_demo.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_icing_demo.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_initializemaps.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_initializemaps.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_map_CD.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_map_CD.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_map_CL.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_map_CL.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_map_CY.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_map_CY.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_map_Cm.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_map_Cm.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_map_Cn.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_map_Cn.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_map_Croll.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_map_Croll.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_map_controlSurface.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_map_controlSurface.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_map_engine.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_map_engine.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_map_fog.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_map_fog.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_map_geometry.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_map_geometry.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_map_ice.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_map_ice.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_map_gear.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_map_gear.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_map_init.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_map_init.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_map_keyword.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_map_keyword.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_map_mass.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_map_mass.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_map_misc.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_map_misc.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_map_record1.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_map_record1.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_map_record2.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_map_record2.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_map_record3.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_map_record3.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_map_record4.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_map_record4.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_map_record5.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_map_record5.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_map_record6.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_map_record6.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_menu.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_menu.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_menu_init.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_menu_init.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_menu_geometry.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_menu_geometry.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_menu_controlSurface.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_menu_controlSurface.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_menu_mass.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_menu_mass.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_menu_engine.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_menu_engine.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_menu_CD.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_menu_CD.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_menu_CL.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_menu_CL.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_menu_Cm.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_menu_Cm.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_menu_CY.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_menu_CY.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_menu_Croll.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_menu_Croll.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_menu_Cn.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_menu_Cn.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_menu_gear.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_menu_gear.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_menu_ice.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_menu_ice.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_menu_fog.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_menu_fog.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_menu_record.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_menu_record.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_menu_misc.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_menu_misc.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_menu_functions.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_menu_functions.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_pah_ap.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_pah_ap.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_parsefile.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_parsefile.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_rah_ap.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_rah_ap.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_recorder.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_recorder.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_warnings_errors.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_warnings_errors.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_wrapper.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UIUCModel\uiuc_wrapper.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_UIUCModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_UIUCModel"

!ENDIF 

# End Source File
# End Group
# Begin Group "Lib_YASim"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\src\FDM\YASim\YASim.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_YASim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_YASim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\YASim\YASim.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_YASim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_YASim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\YASim\Airplane.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_YASim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_YASim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\YASim\Airplane.hpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_YASim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_YASim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\YASim\Atmosphere.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_YASim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_YASim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\YASim\Atmosphere.hpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_YASim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_YASim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\YASim\BodyEnvironment.hpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_YASim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_YASim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\YASim\ControlMap.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_YASim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_YASim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\YASim\ControlMap.hpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_YASim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_YASim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\YASim\FGFDM.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_YASim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_YASim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\YASim\FGFDM.hpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_YASim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_YASim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\YASim\Gear.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_YASim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_YASim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\YASim\Gear.hpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_YASim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_YASim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\YASim\Glue.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_YASim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_YASim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\YASim\Glue.hpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_YASim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_YASim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\YASim\Integrator.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_YASim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_YASim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\YASim\Integrator.hpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_YASim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_YASim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\YASim\Jet.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_YASim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_YASim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\YASim\Jet.hpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_YASim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_YASim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\YASim\Math.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_YASim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_YASim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\YASim\Math.hpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_YASim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_YASim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\YASim\Model.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_YASim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_YASim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\YASim\Model.hpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_YASim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_YASim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\YASim\PropEngine.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_YASim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_YASim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\YASim\PropEngine.hpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_YASim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_YASim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\YASim\Propeller.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_YASim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_YASim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\YASim\Propeller.hpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_YASim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_YASim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\YASim\Engine.hpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_YASim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_YASim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\YASim\PistonEngine.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_YASim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_YASim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\YASim\PistonEngine.hpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_YASim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_YASim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\YASim\TurbineEngine.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_YASim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_YASim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\YASim\TurbineEngine.hpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_YASim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_YASim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\YASim\RigidBody.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_YASim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_YASim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\YASim\RigidBody.hpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_YASim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_YASim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\YASim\Rotor.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_YASim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_YASim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\YASim\Rotor.hpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_YASim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_YASim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\YASim\Rotorblade.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_YASim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_YASim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\YASim\Rotorblade.hpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_YASim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_YASim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\YASim\Rotorpart.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_YASim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_YASim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\YASim\Rotorpart.hpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_YASim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_YASim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\YASim\SimpleJet.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_YASim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_YASim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\YASim\SimpleJet.hpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_YASim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_YASim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\YASim\Surface.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_YASim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_YASim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\YASim\Surface.hpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_YASim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_YASim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\YASim\Thruster.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_YASim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_YASim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\YASim\Thruster.hpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_YASim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_YASim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\YASim\Vector.hpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_YASim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_YASim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\YASim\Wing.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_YASim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_YASim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\YASim\Wing.hpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_YASim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_YASim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\YASim\Turbulence.cpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_YASim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_YASim"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\YASim\Turbulence.hpp

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_YASim"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_YASim"

!ENDIF 

# End Source File
# End Group
# Begin Group "Lib_Flight"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\src\FDM\Balloon.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Flight"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Flight"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\Balloon.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Flight"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Flight"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\flight.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Flight"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Flight"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\flight.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Flight"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Flight"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\groundcache.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Flight"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Flight"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\groundcache.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Flight"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Flight"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\MagicCarpet.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Flight"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Flight"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\MagicCarpet.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Flight"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Flight"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UFO.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Flight"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Flight"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\UFO.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Flight"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Flight"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\NullFDM.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Flight"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Flight"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\FDM\NullFDM.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Flight"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Flight"

!ENDIF 

# End Source File
# End Group
# Begin Group "Lib_GUI"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\src\GUI\new_gui.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_GUI"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_GUI"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\GUI\new_gui.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_GUI"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_GUI"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\GUI\dialog.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_GUI"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_GUI"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\GUI\dialog.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_GUI"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_GUI"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\GUI\menubar.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_GUI"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_GUI"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\GUI\menubar.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_GUI"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_GUI"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\GUI\gui.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_GUI"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_GUI"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\GUI\gui.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_GUI"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_GUI"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\GUI\gui_funcs.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_GUI"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_GUI"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\GUI\gui_local.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_GUI"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_GUI"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\GUI\gui_local.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_GUI"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_GUI"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\GUI\mouse.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_GUI"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_GUI"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\GUI\preset_dlg.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_GUI"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_GUI"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\GUI\preset_dlg.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_GUI"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_GUI"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\GUI\prop_picker.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_GUI"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_GUI"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\GUI\prop_picker.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_GUI"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_GUI"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\GUI\sgVec3Slider.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_GUI"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_GUI"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\GUI\sgVec3Slider.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_GUI"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_GUI"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\GUI\trackball.c

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_GUI"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_GUI"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\GUI\trackball.h

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_GUI"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_GUI"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\GUI\puList.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_GUI"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_GUI"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\GUI\puList.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_GUI"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_GUI"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\GUI\AirportList.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_GUI"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_GUI"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\GUI\AirportList.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_GUI"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_GUI"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\GUI\layout.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_GUI"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_GUI"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\GUI\layout-props.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_GUI"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_GUI"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\GUI\layout.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_GUI"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_GUI"

!ENDIF 

# End Source File
# End Group
# Begin Group "Lib_Input"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\src\Input\input.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Input"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Input"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Input\input.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Input"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Input"

!ENDIF 

# End Source File
# End Group
# Begin Group "Lib_Instrumentation"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\src\Instrumentation\instrument_mgr.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Instrumentation"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Instrumentation"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Instrumentation\instrument_mgr.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Instrumentation"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Instrumentation"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Instrumentation\adf.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Instrumentation"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Instrumentation"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Instrumentation\adf.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Instrumentation"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Instrumentation"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Instrumentation\airspeed_indicator.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Instrumentation"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Instrumentation"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Instrumentation\airspeed_indicator.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Instrumentation"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Instrumentation"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Instrumentation\altimeter.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Instrumentation"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Instrumentation"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Instrumentation\altimeter.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Instrumentation"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Instrumentation"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Instrumentation\annunciator.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Instrumentation"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Instrumentation"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Instrumentation\annunciator.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Instrumentation"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Instrumentation"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Instrumentation\attitude_indicator.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Instrumentation"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Instrumentation"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Instrumentation\attitude_indicator.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Instrumentation"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Instrumentation"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Instrumentation\clock.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Instrumentation"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Instrumentation"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Instrumentation\clock.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Instrumentation"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Instrumentation"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Instrumentation\dme.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Instrumentation"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Instrumentation"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Instrumentation\dme.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Instrumentation"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Instrumentation"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Instrumentation\encoder.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Instrumentation"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Instrumentation"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Instrumentation\encoder.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Instrumentation"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Instrumentation"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Instrumentation\gps.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Instrumentation"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Instrumentation"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Instrumentation\gps.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Instrumentation"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Instrumentation"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Instrumentation\gyro.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Instrumentation"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Instrumentation"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Instrumentation\gyro.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Instrumentation"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Instrumentation"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Instrumentation\heading_indicator.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Instrumentation"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Instrumentation"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Instrumentation\heading_indicator.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Instrumentation"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Instrumentation"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Instrumentation\kr_87.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Instrumentation"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Instrumentation"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Instrumentation\kr_87.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Instrumentation"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Instrumentation"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Instrumentation\kt_70.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Instrumentation"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Instrumentation"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Instrumentation\kt_70.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Instrumentation"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Instrumentation"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Instrumentation\mag_compass.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Instrumentation"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Instrumentation"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Instrumentation\mag_compass.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Instrumentation"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Instrumentation"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Instrumentation\marker_beacon.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Instrumentation"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Instrumentation"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Instrumentation\marker_beacon.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Instrumentation"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Instrumentation"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Instrumentation\navradio.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Instrumentation"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Instrumentation"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Instrumentation\navradio.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Instrumentation"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Instrumentation"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Instrumentation\slip_skid_ball.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Instrumentation"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Instrumentation"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Instrumentation\slip_skid_ball.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Instrumentation"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Instrumentation"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Instrumentation\transponder.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Instrumentation"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Instrumentation"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Instrumentation\transponder.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Instrumentation"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Instrumentation"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Instrumentation\turn_indicator.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Instrumentation"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Instrumentation"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Instrumentation\turn_indicator.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Instrumentation"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Instrumentation"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Instrumentation\vertical_speed_indicator.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Instrumentation"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Instrumentation"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Instrumentation\vertical_speed_indicator.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Instrumentation"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Instrumentation"

!ENDIF 

# End Source File
# End Group
# Begin Group "main"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\src\Main\bootstrap.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\main"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\main"

!ENDIF 

# End Source File
# End Group
# Begin Group "Lib_Main"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\src\Main\main.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Main"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Main"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Main\main.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Main"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Main"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Main\renderer.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Main"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Main"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Main\renderer.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Main"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Main"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Main\fg_commands.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Main"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Main"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Main\fg_commands.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Main"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Main"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Main\fg_init.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Main"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Main"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Main\fg_init.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Main"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Main"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Main\fg_io.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Main"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Main"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Main\fg_io.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Main"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Main"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Main\fg_props.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Main"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Main"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Main\fg_props.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Main"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Main"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Main\globals.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Main"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Main"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Main\globals.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Main"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Main"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Main\logger.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Main"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Main"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Main\logger.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Main"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Main"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Main\options.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Main"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Main"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Main\options.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Main"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Main"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Main\splash.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Main"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Main"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Main\splash.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Main"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Main"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Main\util.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Main"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Main"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Main\util.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Main"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Main"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Main\viewer.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Main"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Main"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Main\viewer.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Main"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Main"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Main\viewmgr.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Main"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Main"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Main\viewmgr.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Main"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Main"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Main\fg_os.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Main"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Main"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Main\fg_os.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Main"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Main"

!ENDIF 

# End Source File
# End Group
# Begin Group "Lib_Model"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\src\Model\acmodel.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Model"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Model"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Model\acmodel.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Model"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Model"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Model\model_panel.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Model"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Model"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Model\model_panel.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Model"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Model"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Model\modelmgr.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Model"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Model"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Model\modelmgr.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Model"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Model"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Model\panelnode.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Model"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Model"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Model\panelnode.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Model"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Model"

!ENDIF 

# End Source File
# End Group
# Begin Group "Lib_AIModel"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\src\AIModel\submodel.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_AIModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_AIModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\AIModel\submodel.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_AIModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_AIModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\AIModel\AIManager.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_AIModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_AIModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\AIModel\AIManager.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_AIModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_AIModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\AIModel\AIBase.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_AIModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_AIModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\AIModel\AIBase.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_AIModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_AIModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\AIModel\AIAircraft.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_AIModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_AIModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\AIModel\AIAircraft.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_AIModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_AIModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\AIModel\AIShip.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_AIModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_AIModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\AIModel\AIShip.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_AIModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_AIModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\AIModel\AIBallistic.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_AIModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_AIModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\AIModel\AIBallistic.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_AIModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_AIModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\AIModel\AIStorm.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_AIModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_AIModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\AIModel\AIStorm.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_AIModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_AIModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\AIModel\AIThermal.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_AIModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_AIModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\AIModel\AIThermal.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_AIModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_AIModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\AIModel\AIFlightPlan.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_AIModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_AIModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\AIModel\AIFlightPlan.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_AIModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_AIModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\AIModel\AIScenario.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_AIModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_AIModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\AIModel\AIScenario.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_AIModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_AIModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\AIModel\AICarrier.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_AIModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_AIModel"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\AIModel\AICarrier.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_AIModel"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_AIModel"

!ENDIF 

# End Source File
# End Group
# Begin Group "Lib_MultiPlayer"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\src\MultiPlayer\multiplayrxmgr.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_MultiPlayer"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_MultiPlayer"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\MultiPlayer\multiplayrxmgr.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_MultiPlayer"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_MultiPlayer"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\MultiPlayer\multiplaytxmgr.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_MultiPlayer"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_MultiPlayer"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\MultiPlayer\multiplaytxmgr.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_MultiPlayer"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_MultiPlayer"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\MultiPlayer\mpplayer.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_MultiPlayer"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_MultiPlayer"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\MultiPlayer\mpplayer.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_MultiPlayer"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_MultiPlayer"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\MultiPlayer\mpmessages.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_MultiPlayer"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_MultiPlayer"

!ENDIF 

# End Source File
# End Group
# Begin Group "Lib_Navaids"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\src\Navaids\navdb.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Navaids"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Navaids"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Navaids\navdb.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Navaids"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Navaids"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Navaids\fix.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Navaids"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Navaids"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Navaids\fixlist.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Navaids"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Navaids"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Navaids\fixlist.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Navaids"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Navaids"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Navaids\nav.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Navaids"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Navaids"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Navaids\navlist.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Navaids"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Navaids"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Navaids\navlist.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Navaids"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Navaids"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Navaids\navrecord.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Navaids"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Navaids"

!ENDIF 

# End Source File
# End Group
# Begin Group "Lib_Network"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\src\Network\protocol.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Network"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Network"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Network\protocol.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Network"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Network"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Network\ATC-Main.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Network"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Network"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Network\ATC-Main.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Network"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Network"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Network\ATC-Inputs.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Network"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Network"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Network\ATC-Inputs.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Network"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Network"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Network\ATC-Outputs.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Network"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Network"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Network\ATC-Outputs.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Network"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Network"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Network\atlas.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Network"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Network"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Network\atlas.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Network"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Network"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Network\garmin.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Network"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Network"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Network\garmin.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Network"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Network"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Network\httpd.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Network"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Network"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Network\httpd.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Network"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Network"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Network\joyclient.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Network"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Network"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Network\joyclient.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Network"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Network"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Network\jsclient.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Network"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Network"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Network\jsclient.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Network"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Network"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Network\native.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Network"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Network"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Network\native.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Network"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Network"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Network\native_ctrls.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Network"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Network"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Network\native_ctrls.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Network"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Network"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Network\native_fdm.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Network"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Network"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Network\native_fdm.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Network"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Network"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Network\native_gui.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Network"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Network"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Network\native_gui.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Network"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Network"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Network\net_ctrls.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Network"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Network"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Network\net_fdm.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Network"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Network"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Network\net_fdm_mini.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Network"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Network"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Network\net_gui.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Network"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Network"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Network\nmea.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Network"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Network"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Network\nmea.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Network"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Network"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Network\opengc.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Network"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Network"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Network\opengc.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Network"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Network"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Network\opengc_data.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Network"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Network"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Network\props.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Network"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Network"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Network\props.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Network"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Network"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Network\pve.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Network"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Network"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Network\pve.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Network"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Network"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Network\ray.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Network"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Network"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Network\ray.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Network"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Network"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Network\rul.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Network"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Network"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Network\rul.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Network"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Network"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Network\generic.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Network"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Network"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Network\generic.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Network"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Network"

!ENDIF 

# End Source File
# End Group
# Begin Group "Lib_Replay"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\src\Replay\replay.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Replay"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Replay"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Replay\replay.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Replay"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Replay"

!ENDIF 

# End Source File
# End Group
# Begin Group "Lib_Scenery"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\src\Scenery\FGTileLoader.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Scenery"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Scenery"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Scenery\FGTileLoader.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Scenery"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Scenery"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Scenery\hitlist.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Scenery"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Scenery"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Scenery\hitlist.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Scenery"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Scenery"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Scenery\newcache.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Scenery"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Scenery"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Scenery\newcache.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Scenery"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Scenery"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Scenery\scenery.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Scenery"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Scenery"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Scenery\scenery.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Scenery"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Scenery"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Scenery\tileentry.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Scenery"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Scenery"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Scenery\tileentry.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Scenery"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Scenery"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Scenery\tilemgr.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Scenery"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Scenery"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Scenery\tilemgr.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Scenery"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Scenery"

!ENDIF 

# End Source File
# End Group
# Begin Group "Lib_Scripting"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\src\Scripting\NasalSys.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Scripting"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Scripting"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Scripting\NasalSys.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Scripting"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Scripting"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Scripting\nasal-props.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Scripting"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Scripting"

!ENDIF 

# End Source File
# End Group
# Begin Group "Lib_Sound"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\src\Sound\beacon.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Sound"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Sound"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Sound\beacon.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Sound"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Sound"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Sound\fg_fx.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Sound"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Sound"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Sound\fg_fx.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Sound"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Sound"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Sound\morse.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Sound"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Sound"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Sound\morse.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Sound"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Sound"

!ENDIF 

# End Source File
# End Group
# Begin Group "Lib_Systems"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\src\Systems\system_mgr.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Systems"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Systems"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Systems\system_mgr.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Systems"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Systems"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Systems\electrical.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Systems"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Systems"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Systems\electrical.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Systems"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Systems"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Systems\pitot.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Systems"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Systems"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Systems\pitot.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Systems"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Systems"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Systems\static.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Systems"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Systems"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Systems\static.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Systems"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Systems"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Systems\vacuum.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Systems"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Systems"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Systems\vacuum.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Systems"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Systems"

!ENDIF 

# End Source File
# End Group
# Begin Group "Lib_Time"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\src\Time\fg_timer.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Time"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Time"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Time\fg_timer.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Time"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Time"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Time\light.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Time"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Time"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Time\light.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Time"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Time"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Time\moonpos.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Time"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Time"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Time\moonpos.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Time"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Time"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Time\sunpos.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Time"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Time"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Time\sunpos.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Time"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Time"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Time\sunsolver.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Time"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Time"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Time\sunsolver.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Time"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Time"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Time\tmp.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Time"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Time"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Time\tmp.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Time"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Time"

!ENDIF 

# End Source File
# End Group
# Begin Group "Lib_Traffic"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\src\Traffic\SchedFlight.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Traffic"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Traffic"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Traffic\SchedFlight.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Traffic"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Traffic"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Traffic\Schedule.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Traffic"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Traffic"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Traffic\Schedule.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Traffic"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Traffic"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Traffic\TrafficMgr.cxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Traffic"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Traffic"

!ENDIF 

# End Source File
# Begin Source File

SOURCE=.\src\Traffic\TrafficMgr.hxx

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_Traffic"

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_Traffic"

!ENDIF 

# End Source File
# End Group
# Begin Source File

SOURCE = .\src\Include\config.h-msvc6

!IF  "$(CFG)" == "FlightGear - Win32 Release"

# Begin Custom Build - Creating config.h
InputPath=.\src\Include\config.h-msvc6

".\src\Include\config.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
	copy .\src\Include\config.h-msvc6 .\src\Include\config.h

# End Custom Build

!ELSEIF  "$(CFG)" == "FlightGear - Win32 Debug"

# Begin Custom Build - Creating config.h
InputPath=.\src\Include\config.h-msvc6

".\src\Include\config.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
	copy .\src\Include\config.h-msvc6 .\src\Include\config.h

# End Custom Build

!ENDIF

# End Source File
# End Target
# End Project
    ++++++++++++ */
    
and SimGear - static library

/* +++++++++++++
# Microsoft Developer Studio Project File - Name="SimGear" - Package Owner=<4>
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **

# TARGTYPE "Win32 (x86) Static Library" 0x0104

CFG=SimGear - Win32 Debug
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
!MESSAGE use the Export Makefile command and run
!MESSAGE 
!MESSAGE NMAKE /f "SimGear.mak".
!MESSAGE 
!MESSAGE You can specify a configuration when running NMAKE
!MESSAGE by defining the macro CFG on the command line. For example:
!MESSAGE 
!MESSAGE NMAKE /f "SimGear.mak" CFG="SimGear - Win32 Debug"
!MESSAGE 
!MESSAGE Possible choices for configuration are:
!MESSAGE 
!MESSAGE "SimGear - Win32 Release" (based on "Win32 (x86) Static Library")
!MESSAGE "SimGear - Win32 Debug" (based on "Win32 (x86) Static Library")
!MESSAGE 
# Begin Project
# PROP AllowPerConfigDependencies 0
# PROP Scc_ProjName ""
# PROP Scc_LocalPath ""
CPP=cl.exe
RSC=rc.exe

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Use_MFC 0
# PROP Use_Debug_Libraries 0
# PROP Output_Dir "Release"
# PROP Intermediate_Dir "Release"
# PROP Target_Dir ""
LINK32=link.exe -lib
# ADD CPP /nologo /MT /W3 /GX /O2 /I "." /I "..\.." /I ".\SimGear" /I "src-libs\zlib-1.1.4" /I "..\..\AL\openal\include" /D "NDEBUG" /D "WIN32" /D "_MBCS" /D "HAVE_CONFIG_H" /FD /c /D "NO_PTHREADS_DLL"
# ADD BASE RSC /l 0xc09
# ADD RSC /l 0x409 /d "NDEBUG"
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LIB32=link.exe -lib
# ADD BASE LIB32 /nologo
# ADD LIB32 /nologo

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Use_MFC 0
# PROP Use_Debug_Libraries 1
# PROP Output_Dir "Debug"
# PROP Intermediate_Dir "Debug"
# PROP Target_Dir ""
LINK32=link.exe -lib
# ADD CPP /nologo /MTd /W3 /GX /ZI /Od /I "." /I "..\.." /I ".\SimGear" /I "src-libs\zlib-1.1.4" /I "..\..\AL\openal\include" /D "_DEBUG" /D "WIN32" /D "_MBCS" /D "HAVE_CONFIG_H" /FR /FD /GZ /c /D "NO_PTHREADS_DLL"
# ADD BASE RSC /l 0xc09
# ADD RSC /l 0x409 /d "_DEBUG"
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LIB32=link.exe -lib
# ADD BASE LIB32 /nologo
# ADD LIB32 /nologo

!ENDIF 
# Begin Target

# Name "SimGear - Win32 Release"
# Name "SimGear - Win32 Debug"
# Begin Group "Lib_sgbucket"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\simgear\bucket\newbucket.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgbucket"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgbucket"

!ENDIF 
# End Source File
# End Group
# Begin Group "Lib_sgclouds3d"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\simgear\scene\sky\clouds3d\vec3fv.cpp

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgclouds3d"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgclouds3d"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\scene\sky\clouds3d\mat16fv.cpp

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgclouds3d"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgclouds3d"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\scene\sky\clouds3d\tri.cpp

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgclouds3d"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgclouds3d"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\scene\sky\clouds3d\plane.cpp

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgclouds3d"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgclouds3d"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\scene\sky\clouds3d\camera.cpp

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgclouds3d"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgclouds3d"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\scene\sky\clouds3d\camutils.cpp

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgclouds3d"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgclouds3d"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\scene\sky\clouds3d\glut_shapes.c

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgclouds3d"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgclouds3d"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\scene\sky\clouds3d\minmaxbox.cpp

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgclouds3d"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgclouds3d"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\scene\sky\clouds3d\SkyArchive.cpp

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgclouds3d"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgclouds3d"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\scene\sky\clouds3d\SkyCloud.cpp

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgclouds3d"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgclouds3d"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\scene\sky\clouds3d\SkyContext.cpp

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgclouds3d"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgclouds3d"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\scene\sky\clouds3d\SkyDynamicTextureManager.cpp

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgclouds3d"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgclouds3d"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\scene\sky\clouds3d\SkyLight.cpp

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgclouds3d"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgclouds3d"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\scene\sky\clouds3d\SkyMaterial.cpp

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgclouds3d"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgclouds3d"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\scene\sky\clouds3d\SkyMinMaxBox.cpp

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgclouds3d"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgclouds3d"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\scene\sky\clouds3d\SkyRenderableInstanceCloud.cpp

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgclouds3d"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgclouds3d"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\scene\sky\clouds3d\SkyRenderableInstanceGroup.cpp

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgclouds3d"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgclouds3d"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\scene\sky\clouds3d\SkySceneLoader.cpp

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgclouds3d"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgclouds3d"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\scene\sky\clouds3d\SkySceneManager.cpp

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgclouds3d"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgclouds3d"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\scene\sky\clouds3d\SkyTextureManager.cpp

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgclouds3d"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgclouds3d"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\scene\sky\clouds3d\SkyTextureState.cpp

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgclouds3d"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgclouds3d"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\scene\sky\clouds3d\SkyUtil.cpp

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgclouds3d"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgclouds3d"

!ENDIF 
# End Source File
# End Group
# Begin Group "Lib_sgdebug"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\simgear\debug\logstream.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgdebug"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgdebug"

!ENDIF 
# End Source File
# End Group
# Begin Group "Lib_sgenvironment"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\simgear\environment\metar.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgenvironment"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgenvironment"

!ENDIF 
# End Source File
# End Group
# Begin Group "Lib_sgephem"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\simgear\ephemeris\celestialBody.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgephem"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgephem"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\ephemeris\ephemeris.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgephem"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgephem"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\ephemeris\jupiter.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgephem"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgephem"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\ephemeris\mars.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgephem"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgephem"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\ephemeris\mercury.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgephem"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgephem"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\ephemeris\moonpos.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgephem"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgephem"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\ephemeris\neptune.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgephem"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgephem"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\ephemeris\saturn.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgephem"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgephem"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\ephemeris\star.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgephem"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgephem"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\ephemeris\stardata.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgephem"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgephem"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\ephemeris\uranus.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgephem"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgephem"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\ephemeris\venus.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgephem"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgephem"

!ENDIF 
# End Source File
# End Group
# Begin Group "Lib_sgio"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\simgear\io\iochannel.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgio"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgio"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\io\lowlevel.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgio"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgio"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\io\sg_binobj.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgio"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgio"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\io\sg_file.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgio"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgio"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\io\sg_serial.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgio"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgio"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\io\sg_socket.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgio"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgio"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\io\sg_socket_udp.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgio"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgio"

!ENDIF 
# End Source File
# End Group
# Begin Group "Lib_sgmagvar"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\simgear\magvar\coremag.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgmagvar"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgmagvar"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\magvar\magvar.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgmagvar"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgmagvar"

!ENDIF 
# End Source File
# End Group
# Begin Group "Lib_sgmaterial"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\simgear\scene\material\mat.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgmaterial"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgmaterial"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\scene\material\matlib.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgmaterial"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgmaterial"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\scene\material\matmodel.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgmaterial"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgmaterial"

!ENDIF 
# End Source File
# End Group
# Begin Group "Lib_sgmath"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\simgear\math\interpolater.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgmath"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgmath"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\math\leastsqs.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgmath"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgmath"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\math\polar3d.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgmath"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgmath"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\math\sg_geodesy.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgmath"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgmath"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\math\sg_random.c

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgmath"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgmath"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\math\vector.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgmath"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgmath"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\math\fastmath.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgmath"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgmath"

!ENDIF 
# End Source File
# End Group
# Begin Group "Lib_sgmisc"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\simgear\misc\sg_path.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgmisc"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgmisc"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\misc\sgstream.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgmisc"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgmisc"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\misc\strutils.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgmisc"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgmisc"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\misc\tabbed_values.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgmisc"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgmisc"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\misc\texcoord.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgmisc"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgmisc"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\misc\zfstream.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgmisc"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgmisc"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\misc\interpolator.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgmisc"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgmisc"

!ENDIF 
# End Source File
# End Group
# Begin Group "Lib_sgmodel"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\simgear\scene\model\animation.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgmodel"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgmodel"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\scene\model\custtrans.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgmodel"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgmodel"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\scene\model\location.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgmodel"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgmodel"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\scene\model\model.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgmodel"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgmodel"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\scene\model\modellib.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgmodel"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgmodel"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\scene\model\personality.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgmodel"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgmodel"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\scene\model\placement.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgmodel"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgmodel"

!ENDIF 
# End Source File
# End Group
# Begin Group "Lib_sgnasal"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\simgear\nasal\code.c

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgnasal"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgnasal"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\nasal\codegen.c

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgnasal"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgnasal"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\nasal\debug.c

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgnasal"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgnasal"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\nasal\gc.c

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgnasal"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgnasal"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\nasal\hash.c

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgnasal"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgnasal"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\nasal\lex.c

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgnasal"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgnasal"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\nasal\lib.c

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgnasal"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgnasal"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\nasal\mathlib.c

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgnasal"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgnasal"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\nasal\misc.c

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgnasal"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgnasal"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\nasal\parse.c

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgnasal"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgnasal"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\nasal\string.c

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgnasal"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgnasal"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\nasal\vector.c

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgnasal"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgnasal"

!ENDIF 
# End Source File
# End Group
# Begin Group "Lib_sgprops"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\simgear\props\condition.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgprops"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgprops"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\props\props.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgprops"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgprops"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\props\props_io.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgprops"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgprops"

!ENDIF 
# End Source File
# End Group
# Begin Group "Lib_sgroute"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\simgear\route\route.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgroute"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgroute"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\route\waypoint.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgroute"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgroute"

!ENDIF 
# End Source File
# End Group
# Begin Group "Lib_sgscreen"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\simgear\screen\texture.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgscreen"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgscreen"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\screen\GLBitmaps.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgscreen"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgscreen"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\screen\screen-dump.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgscreen"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgscreen"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\screen\tr.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgscreen"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgscreen"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\screen\extensions.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgscreen"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgscreen"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\screen\RenderTexture.cpp

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgscreen"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgscreen"

!ENDIF 
# End Source File
# End Group
# Begin Group "Lib_sgserial"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\simgear\serial\serial.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgserial"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgserial"

!ENDIF 
# End Source File
# End Group
# Begin Group "Lib_sgsky"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\simgear\scene\sky\cloud.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgsky"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgsky"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\scene\sky\dome.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgsky"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgsky"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\scene\sky\moon.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgsky"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgsky"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\scene\sky\oursun.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgsky"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgsky"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\scene\sky\sky.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgsky"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgsky"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\scene\sky\sphere.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgsky"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgsky"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\scene\sky\stars.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgsky"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgsky"

!ENDIF 
# End Source File
# End Group
# Begin Group "Lib_sgsound"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\simgear\sound\sample_openal.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgsound"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgsound"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\sound\soundmgr_openal.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgsound"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgsound"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\sound\xmlsound.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgsound"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgsound"

!ENDIF 
# End Source File
# End Group
# Begin Group "Lib_sgstructure"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\simgear\structure\commands.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgstructure"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgstructure"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\structure\exception.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgstructure"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgstructure"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\structure\event_mgr.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgstructure"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgstructure"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\structure\subsystem_mgr.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgstructure"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgstructure"

!ENDIF 
# End Source File
# End Group
# Begin Group "Lib_sgtgdb"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\simgear\scene\tgdb\apt_signs.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgtgdb"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgtgdb"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\scene\tgdb\leaf.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgtgdb"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgtgdb"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\scene\tgdb\obj.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgtgdb"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgtgdb"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\scene\tgdb\pt_lights.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgtgdb"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgtgdb"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\scene\tgdb\userdata.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgtgdb"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgtgdb"

!ENDIF 
# End Source File
# End Group
# Begin Group "Lib_sgthreads"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\simgear\threads\SGThread.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgthreads"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgthreads"

!ENDIF 
# End Source File
# End Group
# Begin Group "Lib_sgtiming"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\simgear\timing\geocoord.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgtiming"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgtiming"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\timing\lowleveltime.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgtiming"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgtiming"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\timing\sg_time.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgtiming"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgtiming"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\timing\timestamp.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgtiming"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgtiming"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\timing\timezone.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgtiming"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgtiming"

!ENDIF 
# End Source File
# End Group
# Begin Group "Lib_sgxgl"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\simgear\xgl\xgl.c

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgxgl"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgxgl"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\xgl\xglUtils.c

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgxgl"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgxgl"

!ENDIF 
# End Source File
# End Group
# Begin Group "Lib_sgxml"

# PROP Default_Filter ""
# Begin Source File

SOURCE=.\simgear\xml\easyxml.cxx

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgxml"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgxml"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\xml\hashtable.c

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgxml"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgxml"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\xml\xmlparse.c

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgxml"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgxml"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\xml\xmlrole.c

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgxml"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgxml"

!ENDIF 
# End Source File
# Begin Source File

SOURCE=.\simgear\xml\xmltok.c

!IF  "$(CFG)" == "SimGear - Win32 Release"

# PROP Intermediate_Dir "Release\Lib_sgxml"

!ELSEIF  "$(CFG)" == "SimGear - Win32 Debug"

# PROP Intermediate_Dir "Debug\Lib_sgxml"

!ENDIF 
# End Source File
# End Group
# Begin Source File

SOURCE=.\simgear\simgear_config.h.vc5
# End Source File
# End Target
# End Project

   +++++++++++++ */