Browse Source

* remove obsolete scripts

git-svn-id: trunk@9068 -
peter 18 years ago
parent
commit
676f477ddb
6 changed files with 0 additions and 122 deletions
  1. 0 5
      .gitattributes
  2. 0 65
      compiler/make_old.cmd
  3. 0 2
      compiler/mdppc386.bat
  4. 0 6
      compiler/mppc386.bat
  5. 0 2
      compiler/mppc68k.bat
  6. 0 42
      compiler/mppcsparc

+ 0 - 5
.gitattributes

@@ -202,8 +202,6 @@ compiler/m68k/r68ksup.inc svneol=native#text/plain
 compiler/m68k/ra68k.pas svneol=native#text/plain
 compiler/m68k/ra68kmot.pas svneol=native#text/plain
 compiler/m68k/rgcpu.pas svneol=native#text/plain
-compiler/make_old.cmd -text
-compiler/mdppc386.bat -text
 compiler/mips/aasmcpu.pas svneol=native#text/plain
 compiler/mips/cpubase.pas svneol=native#text/plain
 compiler/mips/cpuinfo.pas svneol=native#text/plain
@@ -222,9 +220,6 @@ compiler/mips/rmipssri.inc svneol=native#text/plain
 compiler/mips/rmipssta.inc svneol=native#text/plain
 compiler/mips/rmipsstd.inc svneol=native#text/plain
 compiler/mips/rmipssup.inc svneol=native#text/plain
-compiler/mppc386.bat -text
-compiler/mppc68k.bat -text
-compiler/mppcsparc -text
 compiler/msg/errorct.msg svneol=native#text/plain
 compiler/msg/errord.msg svneol=native#text/plain
 compiler/msg/errorda.msg svneol=native#text/plain

+ 0 - 65
compiler/make_old.cmd

@@ -1,65 +0,0 @@
-@echo off
-rem $id: make.cmd,v $
-rem
-rem ************************Make batchfile for OS/2****************************
-rem * Purpose:      The makefile contains a lot of Unix commands. While it is *
-rem *               possible to install for example a bash shell under OS/2   *
-rem *               a batch file is much easier.                              *
-rem *                                                                         *
-rem * Copyright (c) 1998-2000 by Daniel Mantione, developer of Free Pascal         *
-rem ***************************************************************************
-
-goto %1
-
-:clean
-pushd
-\pp\rtl\
-del /s *.ppo *.so2 *.oo2 *.ppu *.s *.o *.pp1 *.s1 *.o1>&dev\nul
-popd
-del *.ppo *.so2 *.oo2 *.ppu *.s *.o *.pp1 *.s1 *.o1>&dev\nul
-goto eind
-
-:prtx
-pushd
-\pp\rtl\os2\
-iff not exist prt0.oo2 then
-  as -o prt0.oo2 prt0.as
-endiff
-iff not exist prt1.oo2 then
-  as -o prt1.oo2 prt1.as
-endiff
-iff not exist code2.oo2 then
-  as -o code2.oo2 code2.as
-endiff
-iff not exist code3.oo2 then
-  as -o code3.oo2 code3.as
-endiff
-popd
-goto eind
-
-:compiler
-call make prtx
-iff "%2"=="" then
-    ppos2 pp.pas
-else
-    %2 pp.pas
-endiff
-goto eind
-
-:remake
-call make clean
-call make compiler %2
-goto eind
-
-:cycle
-call make remake %2
-move pp.exe pp1.exe
-call make remake pp1.exe
-move pp.exe pp2.exe
-call make remake pp2.exe
-move pp.exe pp3.exe
-goto eind
-
-$log: make.cmd,v$
-
-:eind

+ 0 - 2
compiler/mdppc386.bat

@@ -1,2 +0,0 @@
-dcc32 -Di386 -DGDB -Ddelphi -CC -Ui386 -Utargets -E. -N. -$O- ppc.dpr %1 %2 %3 %4 %5 %6 %7 %8 %9
-

+ 0 - 6
compiler/mppc386.bat

@@ -1,6 +0,0 @@
-ppc386 -O3p3 -Ch8000000 -FE. -Fui386 -dI386 -dGDB -dBROWSERLOG -Sg pp.pas %1 %2 %3 %4 %5 %6 %7 %8 %9
-if errorlevel 0 goto success
-goto failed
-:success
-copy pp.exe ppc386.exe
-:failed

+ 0 - 2
compiler/mppc68k.bat

@@ -1,2 +0,0 @@
-ppc386 -Ch8000000 -uSUPPORT_MMX -ui386 -dm68k -dGDB -a -Sg pp.pas %1 %2 %3 %4 %5 %6 %7 %8 %9
-copy pp.exe ppc68k.exe

+ 0 - 42
compiler/mppcsparc

@@ -1,42 +0,0 @@
-#!/bin/bash
-cd "`dirname "$0"`/.."
-FPC_SRC_DIR="$PWD"
-COMP_DIR="$FPC_SRC_DIR/compiler"
-RTL_DIR="$FPC_SRC_DIR/rtl"
-SPARC_BINUTILS_DIR="/usr/local/bin/sparc-linux"
-INCLUDE_PATH=`echo -Fi"$RTL_DIR/"{unix,linux,sparc,inc,linux/sparc,objpas/sysutils}`
-UNITS_PATH=`echo -Fu"$RTL_DIR/"{unix,linux,sparc,inc,linux/sparc,objpas,inc}`
-SRC_DIR=`echo "$COMP_DIR/"{,sparc,systems}:`
-TEST_DIR="$FPC_SRC_DIR/tests/test"
-if [[ "$1" == "-V1.0" ]] || [[ "$#" == 0 ]]
-then
-  if [[ "$1" == "-V1.1" ]]
-  then
-    cd "$COMP_DIR"
-    ~/FPC/bin/fpc -XD -gl -oppcsparc -dExtDebug -Fu"sparc;systems" -FE"sparc" -dSPARC -dGDB -dNewRA pp.pas
-  else
-    cd "$COMP_DIR"
-    fpc -XD -gl -oppcsparc -dExtDebug -Fu"sparc;systems" -FE"sparc" -dSPARC -dGDB -dNewRA pp.pas
-  fi
-fi
-if [[ "$#" -gt "0" ]] && ( [[ "$1" != "-B" ]] || [[ "$#" -gt "1" ]] )
-then
-  cd "$TEST_DIR"
-  COMPILE_COMMAND='"$COMP_DIR/sparc/ppcsparc" -g -artl $UNITS_PATH -FD"$SPARC_BINUTILS_DIR" $INCLUDE_PATH  "-FE$TEST_DIR" -dSPARC'
-  if [[ "$1" == "-gdb" ]]
-  then
-    shift 1
-    eval gdb -d \"$SRC_DIR\" --args $COMPILE_COMMAND "$@"
-  else
-    FILES_LIST=`ls $1`
-    shift 1
-    for FileName in $FILES_LIST
-    do
-      eval "$COMPILE_COMMAND" "$FileName" "$@"
-      if [[ $? != 0 ]]
-      then
-        break;
-      fi
-    done
-  fi
-fi