mirror of
https://github.com/digistump/DigistumpArduino.git
synced 2025-04-28 23:59:01 -07:00
56 lines
1.3 KiB
Makefile
56 lines
1.3 KiB
Makefile
![]() |
#############################################################################
|
||
|
#
|
||
|
# Makefile for librf24-bcm on Raspberry Pi
|
||
|
#
|
||
|
# License: GPL (General Public License)
|
||
|
# Author: Charles-Henri Hallard
|
||
|
# Date: 2013/03/13
|
||
|
#
|
||
|
# Description:
|
||
|
# ------------
|
||
|
# use make all and mak install to install the library
|
||
|
# You can change the install directory by editing the LIBDIR line
|
||
|
#
|
||
|
PREFIX=/usr/local
|
||
|
|
||
|
# Library parameters
|
||
|
# where to put the lib
|
||
|
LIBDIR=$(PREFIX)/lib
|
||
|
# lib name
|
||
|
LIB=librf24-bcm
|
||
|
# shared library name
|
||
|
LIBNAME=$(LIB).so.1.0
|
||
|
|
||
|
|
||
|
# The recommended compiler flags for the Raspberry Pi
|
||
|
CCFLAGS=-Ofast -mfpu=vfp -mfloat-abi=hard -march=armv6zk -mtune=arm1176jzf-s
|
||
|
|
||
|
# make all
|
||
|
# reinstall the library after each recompilation
|
||
|
all: librf24-bcm install
|
||
|
|
||
|
# Make the library
|
||
|
librf24-bcm: RF24.o bcm2835.o
|
||
|
g++ -shared -Wl,-soname,$@.so.1 ${CCFLAGS} -o ${LIBNAME} $^
|
||
|
|
||
|
# Library parts
|
||
|
RF24.o: RF24.cpp
|
||
|
g++ -Wall -fPIC ${CCFLAGS} -c $^
|
||
|
|
||
|
bcm2835.o: bcm2835.c
|
||
|
gcc -Wall -fPIC ${CCFLAGS} -c $^
|
||
|
|
||
|
# clear build files
|
||
|
clean:
|
||
|
rm -rf *.o ${LIB}.*
|
||
|
|
||
|
# Install the library to LIBPATH
|
||
|
install:
|
||
|
@echo "[Install]"
|
||
|
@if ( test ! -d $(PREFIX)/lib ) ; then mkdir -p $(PREFIX)/lib ; fi
|
||
|
#@install -m 0755 ${LIB}.a ${LIBDIR}
|
||
|
@install -m 0755 ${LIBNAME} ${LIBDIR}
|
||
|
@ln -sf ${LIBDIR}/${LIBNAME} ${LIBDIR}/${LIB}.so.1
|
||
|
@ln -sf ${LIBDIR}/${LIBNAME} ${LIBDIR}/${LIB}.so
|
||
|
@ldconfig
|