Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
neo
neo
Commits
97973696
Commit
97973696
authored
Aug 01, 2016
by
Peter Wägemann
Browse files
Initial commit: add setup script
parents
Changes
1
Hide whitespace changes
Inline
Side-by-side
setup.sh
0 → 100755
View file @
97973696
#!/bin/sh
DIR
=
`
pwd
`
GIT
=
"https://git@gitlab.cs.fau.de/faumachine"
#
# FAUcc checkout:
#
git clone
${
GIT
}
/faucc.git
#
# FAUcc build:
#
cd
faucc
./autogen.sh
./configure
--prefix
=
${
DIR
}
/faucc/Devel
make
-s
make devel
cd
..
#
# Set PATH.
#
PATH
=
${
PATH
}
:
${
DIR
}
/faucc/Devel/bin
#
# FAUhdlc checkout:
#
git clone
${
GIT
}
/fauhdlc.git
#
# FAUhdlc build:
#
cd
fauhdlc/src
./autogen.sh
./configure
--prefix
=
${
DIR
}
/fauhdlc/Devel
make
-s
make devel
cd
../..
#
# Set PATH.
#
PATH
=
${
PATH
}
:
${
DIR
}
/fauhdlc/Devel/bin
#
# FAUmachine checkout:
#
git clone
${
GIT
}
/faumachine.git
#
# FAUmachine build
#
cd
faumachine
./autogen.sh
./configure
--prefix
=
${
DIR
}
/faumachine/Devel
--with-fauhdli-dir
=
${
DIR
}
/fauhdlc/Devel
make
-s
make devel
cd
..
#
# Set PATH.
#
PATH
=
${
PATH
}
:
${
DIR
}
/faumachine/Devel/bin
echo
echo
"********************"
echo
"* Build completed. *"
echo
"********************"
echo
echo
"Don't forget to add
\"
${
DIR
}
/faucc/Devel/bin:
${
DIR
}
/fauhdlc/Devel/bin:
${
DIR
}
/faumachine/Devel/bin
\"
to your PATH variable!"
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment