Commit 2fb52f1a authored by Lee, Seyong's avatar Lee, Seyong
Browse files

Update scripts.

parent 60b16b6d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
include ../../../../make.header
include $(openarc)/make.header

########################
# Set the program name #
@@ -47,4 +47,4 @@ MODE ?= normal
################################################
#TARGET ?= ./bin

include ../../../../make.template
include $(openarc)/make.template
+7 −2
Original line number Diff line number Diff line
@@ -10,8 +10,13 @@ else
	verLevel=0
fi

openarcrt="../../../../openarcrt"
openarclib="../../../../lib"
if [ "$openarc" = "" ] || [ ! -d "${openarc}" ]; then
    echo "Environment variable, openarc, should be set to the OpenARC home directory to use this script; exit"
    exit
fi

openarcrt="${openarc}/openarcrt"
openarclib="${openarc}/lib"

if [ ! -f "openarcConf.txt" ]; then
    cp "openarcConf_NORMAL.txt" "openarcConf.txt"
+2 −2
Original line number Diff line number Diff line
include ../../../../make.header
include $(openarc)/make.header

########################
# Set the program name #
@@ -82,4 +82,4 @@ AOCL_FLAGS ?= -v -c -report
################################################
#TARGET ?= ./bin

include ../../../../make.template
include $(openarc)/make.template
+7 −2
Original line number Diff line number Diff line
@@ -10,8 +10,13 @@ else
	verLevel=0
fi

openarcrt="../../../../openarcrt"
openarclib="../../../../lib"
if [ "$openarc" = "" ] || [ ! -d "${openarc}" ]; then
    echo "Environment variable, openarc, should be set to the OpenARC home directory to use this script; exit"
    exit
fi

openarcrt="${openarc}/openarcrt"
openarclib="${openarc}/lib"

if [ ! -f "openarcConf.txt" ]; then
    cp "openarcConf_NORMAL.txt" "openarcConf.txt"
+2 −2
Original line number Diff line number Diff line
include ../../../../make.header
include $(openarc)/make.header

########################
# Set the program name #
@@ -82,4 +82,4 @@ CLIBS1 = -lm
################################################
#TARGET ?= ./bin

include ../../../../make.template
include $(openarc)/make.template
Loading