mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 03:51:15 +08:00
6144e9a945
VERSION, move gen of "conf" here from makefile. * mpw-make.sed: New file, sed commands to translate Unix makefile into MPW syntax. * mpw-make.in: Remove. * mac-as.r: New file, Mac resource file. * as.h (inline): Don't decide about defining if __MWERKS__, remove redundant conditional and definition. * stabs.c (s_stab_generic): Fix syntax for OBJ_PROCESS_STAB.
43 lines
544 B
R
43 lines
544 B
R
/* Resources for GNU AS. */
|
|
|
|
#include "SysTypes.r"
|
|
|
|
/* Version resources. */
|
|
|
|
resource 'vers' (1) {
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
verUs,
|
|
VERSION_STRING,
|
|
VERSION_STRING " (c) 1986-95 FSF, Inc. "
|
|
};
|
|
|
|
resource 'vers' (2, purgeable) {
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
verUs,
|
|
VERSION_STRING,
|
|
"GAS " /* fill in major/minor versions */ "for MPW"
|
|
};
|
|
|
|
#ifdef WANT_CFRG
|
|
|
|
#include "CodeFragmentTypes.r"
|
|
|
|
resource 'cfrg' (0) {
|
|
{
|
|
kPowerPC,
|
|
kFullLib,
|
|
kNoVersionNum, kNoVersionNum,
|
|
0,0,
|
|
kIsApp, kOnDiskFlat, kZeroOffset, kWholeFork,
|
|
"as"
|
|
}
|
|
};
|
|
|
|
#endif /* WANT_CFRG */
|