1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-02-20 10:54:14 +01:00

rscode: add a library make config file, library.mk

This commit is contained in:
Oleg Semyonov 2013-03-16 11:45:20 +02:00
parent a1e17eccf3
commit 8b4a547d69

View File

@ -0,0 +1,9 @@
#
# Rules to add RSCODE to a PiOS target
#
RSCODE_DIR := $(dir $(lastword $(MAKEFILE_LIST)))
RSCODE_SRC := berlekamp.c crcgen.c galois.c rs.c
SRC += $(addprefix $(RSCODE_DIR)/,$(RSCODE_SRC))
EXTRAINCDIRS += $(RSCODE_DIR)