1#############################################################################
2# Software Testing Automation Framework (STAF)                              #
3# (C) Copyright IBM Corp. 2001                                              #
4#                                                                           #
5# This software is licensed under the Eclipse Public License (EPL) V1.0.    #
6#############################################################################
7
8# Setup system variables
9
10FS := /
11PS := :
12OS_TYPE = unix
13OS_LIBS = socket thread gen crypt
14OS_LIBDIRS = /usr/ccs/lib
15
16# Setup tool names
17
18STRIP := strip
19
20# Setup compiler variables
21
22ifeq ($(CC_NAME),)
23    CC_NAME := scocc
24endif
25
26# Setup commands
27
28ifndef CREATE_PATH
29    CREATE_PATH = @$(shell test ! -d $(@D) && $(MAKE_PATH) $(@D))
30endif
31
32OS_COMMONFLAGS := -DSTAF_OS_NAME_UNIXWARE -DSTAF_NO_IOS_BINARY
33
34# Provide the default location for library files on this system
35
36ifndef JAVA_ROOT
37    JAVA_ROOT = /opt/jdk-1.1.7.peta
38endif
39
40ifndef JAVA_LIBDIRS
41    JAVA_LIBDIRS = $(JAVA_ROOT)/lib/x86at/green_threads
42endif
43
44ifndef PERL_ROOT
45    PERL_ROOT = /usr/local/lib/perl5/5.00503/i386-svr4/CORE
46endif
47