mirror of
https://github.com/thiagoralves/OpenPLC_v3.git
synced 2025-12-16 01:26:25 +08:00
15 lines
385 B
Bash
Executable File
15 lines
385 B
Bash
Executable File
#! /bin/sh
|
|
if autoreconf --install --symlink --force; then
|
|
echo
|
|
echo "------------------------------------------------------"
|
|
echo "Initialized build system. You can now run ./configure "
|
|
echo "------------------------------------------------------"
|
|
echo
|
|
else
|
|
echo
|
|
echo "--------------------------"
|
|
echo "Running autoreconf failed."
|
|
echo "--------------------------"
|
|
echo
|
|
fi
|