Blame | Last modification | View Log | RSS feed
#
# $Id: Makefile 1235 2014-02-21 16:44:10Z ales.bardorfer $
#
# Red Pitaya specific application Makefile.
#
APP=$(notdir $(CURDIR:%/=%))
# Versioning system
BUILD_NUMBER ?= 0
REVISION ?= devbuild
VER:=$(shell cat info/info.json | grep version | sed -e 's/.*:\ *\"//' | sed -e 's/-.*//')
INSTALL_DIR ?= ../../build
CONTROLLERHF = controllerhf.so
CFLAGS += -DVERSION=$(VER)-$(BUILD_NUMBER) -DREVISION=$(REVISION)
export CFLAGS
all: $(CONTROLLERHF)
$(CONTROLLERHF):
$(MAKE) -C src
clean:
$(MAKE) -C src clean
-$(RM) *.so