summaryrefslogtreecommitdiff
path: root/radiohead.mk
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2018-11-22 00:42:10 +0100
committerChristian Pointner <equinox@spreadspace.org>2018-11-22 00:42:10 +0100
commit8e811ef77b42ef1d62db2b19b642daac2acb8665 (patch)
tree3ab33f9f7fb2808cd04d4f04d895d6b686cdf400 /radiohead.mk
parentadded RadioHead library (diff)
added basic environment for RadioHead lib - not working yet
Diffstat (limited to 'radiohead.mk')
-rw-r--r--radiohead.mk42
1 files changed, 42 insertions, 0 deletions
diff --git a/radiohead.mk b/radiohead.mk
new file mode 100644
index 0000000..f0aabca
--- /dev/null
+++ b/radiohead.mk
@@ -0,0 +1,42 @@
+##
+## spreadspace avr utils
+##
+##
+## Copyright (C) 2013-2018 Christian Pointner <equinox@spreadspace.org>
+##
+## This file is part of spreadspace avr utils.
+##
+## spreadspace avr utils is free software: you can redistribute it and/or modify
+## it under the terms of the GNU General Public License as published by
+## the Free Software Foundation, either version 3 of the License, or
+## any later version.
+##
+## spreadspace avr utils is distributed in the hope that it will be useful,
+## but WITHOUT ANY WARRANTY; without even the implied warranty of
+## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+## GNU General Public License for more details.
+##
+## You should have received a copy of the GNU General Public License
+## along with spreadspace avr utils. If not, see <http://www.gnu.org/licenses/>.
+##
+
+include $(SPREADAVR_PATH)/defines.mk
+
+RADIOHEAD_COMPONENTS := RH_$(RADIOHEAD_DRIVER) # TODO: added other components dependent on driver...
+
+SRC:=$(foreach COMP,$(RADIOHEAD_COMPONENTS),$(RADIOHEAD_PATH)/$(COMP).cpp)
+
+CXXFLAGS += -I$(RADIOHEAD_PATH)
+CXXFLAGS += -DRH_PLATFORM=RH_PLATFORM_GENERIC_AVR8
+CXXFLAGS += $(RADIOHEAD_OPTS)
+
+OBJ = $(SRC:%.cpp=%.o)
+
+libradiohead.a: $(OBJ)
+ $(AR) $@ $(OBJ)
+
+%.o: %.cpp
+ $(CXX) -c $(CXXFLAGS) $< -o $@
+
+clean:
+ rm -f $(SRC:%.cpp=%.o)