1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-25 19:46:21 +00:00

Remove optck (#286)

This was for checking for a bug in old versions of the SunOS
tools and is no longer relevant.
This commit is contained in:
Bruce Mitchener
2021-01-25 09:14:11 +07:00
committed by GitHub
parent b151790c40
commit 04b4b64b87
4 changed files with 1 additions and 62 deletions

View File

@@ -2,7 +2,7 @@ AFLAGS = /T
ARCHFILES = dosmouse.obj doskbd.obj vesafns.obj vesainit.obj vgainit.obj kbdif.obj
ADMINFILES = makefile mkvdate.c optck.c
ADMINFILES = makefile mkvdate.c
LPFILES = lpmain.obj lpread.obj lpsolve.obj lpwrite.obj lpdual.obj lptran.obj

View File

@@ -1,17 +0,0 @@
#!/bin/sh
#
# Check whether Assembler optimization is correct or not.
#
if [ -f ./optck ]; then
/bin/rm -f ./optck
fi
/bin/cc -O2 ../src/optck.c -o optck
res=`./optck`
if [ "$res" = "wrong" ]; then
echo -n "-Qoption as -O~M"
fi