Changeset 431c35d in rtems
- Timestamp:
- 10/20/99 19:59:01 (23 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- e171450
- Parents:
- c429ec80
- Location:
- scripts
- Files:
-
- 1 deleted
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
scripts/Makefile.am
rc429ec80 r431c35d 28 28 29 29 DISTCLEANFILES = setup.cache 30 31 CLEANFILES = buildall -
scripts/Makefile.in
rc429ec80 r431c35d 85 85 86 86 DISTCLEANFILES = setup.cache 87 88 CLEANFILES = buildall 87 89 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 88 90 mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs 89 CONFIG_CLEAN_FILES = mkbinutilspec mkgccnewlibspec mkgdbspec91 CONFIG_CLEAN_FILES = buildall mkbinutilspec mkgccnewlibspec mkgdbspec 90 92 SCRIPTS = $(noinst_SCRIPTS) 91 93 92 94 DATA = $(noinst_DATA) 93 95 94 DIST_COMMON = README Makefile.am Makefile.in TODO aclocal.m4 configure\95 configure.in install-sh missing mkbinutilspec.in mkgccnewlibspec.in \96 mkg dbspec.in mkinstalldirs96 DIST_COMMON = README Makefile.am Makefile.in TODO aclocal.m4 \ 97 buildall.in configure configure.in install-sh missing mkbinutilspec.in \ 98 mkgccnewlibspec.in mkgdbspec.in mkinstalldirs 97 99 98 100 … … 117 119 $(srcdir)/configure: $(srcdir)/configure.in $(ACLOCAL_M4) $(CONFIGURE_DEPENDENCIES) 118 120 cd $(srcdir) && $(AUTOCONF) 121 buildall: $(top_builddir)/config.status buildall.in 122 cd $(top_builddir) && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status 119 123 mkbinutilspec: $(top_builddir)/config.status mkbinutilspec.in 120 124 cd $(top_builddir) && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status … … 306 310 307 311 clean-generic: 312 -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) 308 313 309 314 distclean-generic: -
scripts/TODO
rc429ec80 r431c35d 1 # 2 # $Id$ 3 # 1 4 5 There is plenty left to do on this :) 6 7 + Add GNAT/RTEMS version. -
scripts/binutils/binutils.spec.in
rc429ec80 r431c35d 17 17 Autoreqprov: on 18 18 Packager: corsepiu@faw.uni-ulm.de and joel@OARcorp.com 19 Buildroot: / tmp19 Buildroot: /opt/tmp 20 20 Prefix: /opt 21 21 22 Version: binutils@binutils_version@22 Version: @binutils_version@ 23 23 Summary: binutils for target @target_alias@ 24 24 Source0: binutils-@binutils_version@.tar.gz … … 36 36 37 37 %prep 38 echo RPM_BUILD_ROOT=${RPM_BUILD_ROOT} 38 39 # untar the sources inside @target_alias@-binutils 39 40 %setup -c -n @target_alias@-binutils -a 0 -
scripts/configure
rc429ec80 r431c35d 914 914 915 915 trap 'rm -fr `echo "Makefile 916 buildall 916 917 mkbinutilspec 917 918 mkgccnewlibspec … … 920 921 gccnewlib/Makefile 921 922 gdb/Makefile 923 rtems/Makefile 922 924 " | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15 923 925 EOF … … 1009 1011 1010 1012 CONFIG_FILES=\${CONFIG_FILES-"Makefile 1013 buildall 1011 1014 mkbinutilspec 1012 1015 mkgccnewlibspec … … 1015 1018 gccnewlib/Makefile 1016 1019 gdb/Makefile 1020 rtems/Makefile 1017 1021 "} 1018 1022 EOF -
scripts/configure.in
rc429ec80 r431c35d 1 1 AC_INIT(binutils) 2 AM_INIT_AUTOMAKE(scripts,19991020- 0,no)2 AM_INIT_AUTOMAKE(scripts,19991020-1,no) 3 3 4 4 test -f ./setup.cache || cp ./setup.def ./setup.cache … … 34 34 AC_OUTPUT( 35 35 Makefile 36 buildall 36 37 mkbinutilspec 37 38 mkgccnewlibspec … … 40 41 gccnewlib/Makefile 41 42 gdb/Makefile 43 rtems/Makefile 42 44 ) -
scripts/gccnewlib/gccnewlib.spec.in
rc429ec80 r431c35d 19 19 Packager: corsepiu@faw.uni-ulm.de and joel@OARcorp.com 20 20 21 Version: gcc@gcc_version@newlib@newlib_version@21 Version: @gcc_version@newlib@newlib_version@ 22 22 Summary: rtems gcc and newlib C Library for target @target_alias@ 23 23 Source0: gcc-@gcc_version@.tar.gz … … 39 39 40 40 %prep 41 echo RPM_BUILD_ROOT=${RPM_BUILD_ROOT} 41 42 # untar the sources inside @target_alias@-gcc-newlib -@Version@ 42 43 %setup -c -n @target_alias@-gcc-newlib -a 0 -a 1 -
scripts/gdb/gdb.spec.in
rc429ec80 r431c35d 20 20 Packager: corsepiu@faw.uni-ulm.de and joel@OARcorp.com 21 21 22 Version: gdb@gdb_version@22 Version: @gdb_version@ 23 23 Summary: gdb for target @target_alias@ 24 24 Source0: gdb-@gdb_version@.tar.gz … … 38 38 39 39 %prep 40 echo RPM_BUILD_ROOT=${RPM_BUILD_ROOT} 40 41 # untar the sources inside @target_alias@-gdb 41 42 %setup -c -n @target_alias@-gdb -a 0 -
scripts/mkbinutils_subpackage_version
rc429ec80 r431c35d 62 62 echo "Patch0: binutils-990901-rtems-19991015.diff" 63 63 echo "" 64 echo "Buildroot: / tmp"64 echo "Buildroot: /opt/tmp" 65 65 echo "# Patch:" 66 66 echo "%description" -
scripts/mkbinutilspec.in
rc429ec80 r431c35d 46 46 target_alias=$1 47 47 48 # RPM release number49 rpm_release=050 51 48 . ./$CFG 52 49 53 50 specfile=${dst}/$target_alias-binutils-${binutils_version}.spec 54 51 55 sed -e "s%@Release@%${ rpm_release}%g" \52 sed -e "s%@Release@%${binutils_rpm_release}%g" \ 56 53 -e "s%@target_alias@%${target_alias}%g" \ 57 54 -e "s%@binutils_version@%${binutils_version}%g" \ -
scripts/mkgccnewlibspec.in
rc429ec80 r431c35d 46 46 target_alias=$1 47 47 48 # RPM release number49 rpm_release=050 51 48 . ./$CFG 52 49 53 50 specfile=${dst}/$target_alias-gcc-${gcc_version}-newlib-${newlib_version}.spec 54 51 55 sed -e "s%@Release@%${ rpm_release}%g" \52 sed -e "s%@Release@%${gccnewlib_rpm_release}%g" \ 56 53 -e "s%@target_alias@%${target_alias}%g" \ 57 54 -e "s%@gcc_version@%${gcc_version}%g" \ -
scripts/mkgdbspec.in
rc429ec80 r431c35d 45 45 target_alias=$1 46 46 47 # RPM release number48 rpm_release=049 50 47 . ./$CFG 51 48 52 49 specfile=${dst}/$target_alias-gdb-${gdb_version}.spec 53 50 54 sed -e "s%@Release@%${ rpm_release}%g" \51 sed -e "s%@Release@%${gdb_rpm_release}%g" \ 55 52 -e "s%@target_alias@%${target_alias}%g" \ 56 53 -e "s%@gdb_version@%${gdb_version}%g" \
Note: See TracChangeset
for help on using the changeset viewer.