ff4ff35918
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
52 lines
1.0 KiB
Plaintext
52 lines
1.0 KiB
Plaintext
$!
|
|
$! Build procedure
|
|
$!
|
|
$! Note: you need a DCL-compatible gnu make.
|
|
$ MAKE="make381"
|
|
$ OPT=""
|
|
$!
|
|
$ if (P1 .EQS. "CONFIGURE") .OR. (P1 .EQS. "ALL")
|
|
$ then
|
|
$ set def [.bfd]
|
|
$ @configure
|
|
$ set def [-.libiberty]
|
|
$ @configure
|
|
$ set def [-.opcodes]
|
|
$ @configure
|
|
$ set def [-.binutils]
|
|
$ @configure
|
|
$ set def [-.gas]
|
|
$ @configure
|
|
$ set def [-]
|
|
$ endif
|
|
$ if (P1 .EQS. "BUILD") .OR. (P1 .EQS. "ALL")
|
|
$ then
|
|
$ set def [.bfd]
|
|
$ @build
|
|
$ set def [-.libiberty]
|
|
$ @build
|
|
$ set def [-.opcodes]
|
|
$ @build
|
|
$ set def [-.binutils]
|
|
$ @build
|
|
$ set def [-.gas]
|
|
$ @build
|
|
$ set def [-]
|
|
$ endif
|
|
$ if P1 .EQS. "MAKE"
|
|
$ then
|
|
$ ARCH=F$GETSYI("ARCH_NAME")
|
|
$ ARCH=F$EDIT(arch,"UPCASE")
|
|
$ set def [.bfd]
|
|
$ 'MAKE "ARCH=''ARCH'" "OPT=''OPT'"
|
|
$ set def [-.libiberty]
|
|
$ 'MAKE "ARCH=''ARCH'" "OPT=''OPT'"
|
|
$ set def [-.opcodes]
|
|
$ 'MAKE "ARCH=''ARCH'" "OPT=''OPT'"
|
|
$ set def [-.binutils]
|
|
$ 'MAKE "ARCH=''ARCH'" "OPT=''OPT'"
|
|
$ set def [-.gas]
|
|
$ 'MAKE "ARCH=''ARCH'" "OPT=''OPT'"
|
|
$ set def [-]
|
|
$ endif
|