12 lines
426 B
Bash
Executable File
12 lines
426 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Copyright 2025 Interzero Product Cycle GmbH
|
|
#
|
|
# This program is free software under the terms of the BSD-3-Clause license.
|
|
# A copy of this license should have been provided with the code.
|
|
# If not, see https://opensource.org/license/BSD-3-Clause or https://spdx.org/licenses/BSD-3-Clause.html
|
|
|
|
set -v
|
|
rm ethercat-static
|
|
gcc -Wall -Wextra -fPIE -pie -static -static-libgcc ethercat.c -o ethercat-static
|