mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-12-03 09:41:26 +00:00
d1e46898ff
fragment, generate config.h. * mpw-make.sed: New file, sed commands to edit Unix makefile into MPW syntax. * mpw-make.in: Remove. * mac-binutils.r: New file, Mac resources.
43 lines
560 B
R
43 lines
560 B
R
/* Resources for GNU binutils. */
|
|
|
|
#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,
|
|
"binutils " /* 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,
|
|
PROG_NAME
|
|
}
|
|
};
|
|
|
|
#endif /* WANT_CFRG */
|