mirror of
https://github.com/stargieg/bacnet-stack
synced 2025-10-26 23:35:52 +08:00
14 lines
365 B
Bash
Executable File
14 lines
365 B
Bash
Executable File
#!/bin/sh
|
|
# A script to download and build the libpifacedigital for PiFace
|
|
# The library is located at github.com/piface
|
|
# Since the PiFace library is GPLv3, we have to keep it separate.
|
|
|
|
git clone https://github.com/piface/libmcp23s17.git
|
|
git clone https://github.com/piface/libpifacedigital.git
|
|
|
|
# Build the library
|
|
|
|
make -C libmcp23s17
|
|
make -C libpifacedigital
|
|
|