Rev 6 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
# Import environment set for target.
Import('env_target')
# Define target name.
TARGET = 'digital_io'
# Define source files.
sources = [
'digital_io.c'
]
# Build library.
env_target.BuildLibrary(sources, TARGET)