summaryrefslogtreecommitdiffstats
path: root/test/maketests.com
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2001-02-22 14:45:02 +0000
committerRichard Levitte <levitte@openssl.org>2001-02-22 14:45:02 +0000
commit41d2a336eee7fcf7beda0ce38e0ef7fc16bbfdb1 (patch)
treedcad6fa950b6c4403a3ede282062c3c24ce75b0d /test/maketests.com
parent627774fd877b9aae249d937afa214d87d8964ae1 (diff)
e_os.h does not belong with the exported headers. Do not put it there
and make all files the depend on it include it without prefixing it with openssl/. This means that all Makefiles will have $(TOP) as one of the include directories.
Diffstat (limited to 'test/maketests.com')
-rw-r--r--test/maketests.com9
1 files changed, 6 insertions, 3 deletions
diff --git a/test/maketests.com b/test/maketests.com
index 328654c37b..a996ae0d3d 100644
--- a/test/maketests.com
+++ b/test/maketests.com
@@ -762,7 +762,8 @@ $ CC = "CC"
$ IF ARCH.EQS."VAX" .AND. F$TRNLNM("DECC$CC_DEFAULT").NES."/DECC" -
THEN CC = "CC/DECC"
$ CC = CC + "/''CC_OPTIMIZE'/''DEBUGGER'/STANDARD=ANSI89" + -
- "/NOLIST/PREFIX=ALL" + CCEXTRAFLAGS
+ "/NOLIST/PREFIX=ALL" + -
+ "/INCLUDE=(SYS$DISK:[-])" + CCEXTRAFLAGS
$!
$! Define The Linker Options File Name.
$!
@@ -794,7 +795,8 @@ $ WRITE SYS$OUTPUT "There is no VAX C on Alpha!"
$ EXIT
$ ENDIF
$ IF F$TRNLNM("DECC$CC_DEFAULT").EQS."/DECC" THEN CC = "CC/VAXC"
-$ CC = CC + "/''CC_OPTIMIZE'/''DEBUGGER'/NOLIST" + CCEXTRAFLAGS
+$ CC = CC + "/''CC_OPTIMIZE'/''DEBUGGER'/NOLIST" + -
+ "/INCLUDE=(SYS$DISK:[-])" + CCEXTRAFLAGS
$ CCDEFS = CCDEFS + ",""VAXC"""
$!
$! Define <sys> As SYS$COMMON:[SYSLIB]
@@ -824,7 +826,8 @@ $ WRITE SYS$OUTPUT "Using GNU 'C' Compiler."
$!
$! Use GNU C...
$!
-$ CC = "GCC/NOCASE_HACK/''GCC_OPTIMIZE'/''DEBUGGER'/NOLIST" + CCEXTRAFLAGS
+$ CC = "GCC/NOCASE_HACK/''GCC_OPTIMIZE'/''DEBUGGER'/NOLIST" + -
+ "/INCLUDE=(SYS$DISK:[-])" + CCEXTRAFLAGS
$!
$! Define The Linker Options File Name.
$!