prepare env

This commit is contained in:
Alexander Popov 2023-07-29 21:05:08 +03:00
parent e4007e4960
commit d4bde52745
Signed by: iiiypuk
GPG Key ID: E47FE0AB36CD5ED6
4 changed files with 38 additions and 0 deletions

1
~/C/libserialport/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
port_info

View File

@ -0,0 +1,16 @@
Download `libserialport` library.
```sh
git clone git://sigrok.org/libserialport
```
For **build** code use `build` script or build files manually.
Example:
```sh
export C_INCLUDE_PATH=<path/to/libserialport>
export LIBRARY_PATH=<path/to/libserialport/.libs>
gcc -static -Wall -O3 -o <output_filename> <file.c> -lserialport
```

14
~/C/libserialport/build Executable file
View File

@ -0,0 +1,14 @@
#!/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 \
port_info.c
do
gcc -static -Wall -O3 -o ${file%.*} $file -lserialport
done

7
~/C/libserialport/clear Executable file
View File

@ -0,0 +1,7 @@
#!/bin/sh
#
# clear - script for delete all builded files.
#
# Alexander Popov <iiiypuk@fastmail.fm>
rm port_info