snipplets.dev/~/C/libserialport/build

19 lines
345 B
Plaintext
Raw Normal View History

2023-07-29 21:05:08 +03:00
#!/bin/sh
#
# build - script for build all files.
#
# Alexander Popov <iiiypuk@fastmail.fm>
export C_INCLUDE_PATH=$HOME/Git/libserialport
export LIBRARY_PATH=$HOME/Git/libserialport/.libs
for file in \
2023-07-29 21:08:22 +03:00
port_info.c \
list_ports.c \
2023-07-29 22:32:44 +03:00
send_receive.c \
listen.c \
2023-07-29 21:08:22 +03:00
2023-07-29 21:05:08 +03:00
do
gcc -static -Wall -O3 -o ${file%.*} $file -lserialport
done