2013-04-08 23:55:01 +02:00
|
|
|
# --- START OF CONFIG ---------------------------------------------------
|
|
|
|
# Edit the following variables for your own needs
|
|
|
|
|
|
|
|
# toolchain configuration
|
|
|
|
CXX=gcc
|
|
|
|
LD=gcc
|
|
|
|
|
|
|
|
# default build configuration
|
|
|
|
# "make BUILD=release" does a release build
|
2013-04-12 19:25:23 +02:00
|
|
|
BUILD:=debug
|
2013-04-08 23:55:01 +02:00
|
|
|
|
|
|
|
# basic build flags configuration
|
|
|
|
CFLAGS+=-std=c99 -Wall -pedantic -Wno-long-long -D_POSIX_C_SOURCE=20120607L -D_FILE_OFFSET_BITS=64
|
2013-04-13 16:07:11 +02:00
|
|
|
LIBS+=-lm -lrt
|
2013-04-08 23:55:01 +02:00
|
|
|
|
|
|
|
# library specific flags
|
|
|
|
# wiringPi
|
|
|
|
CFLAGS+=
|
|
|
|
LIBS+=-lwiringPi
|
|
|
|
|
|
|
|
# build type specific flags
|
|
|
|
CFLAGS_debug=-O0 -ggdb -DDEBUG
|
|
|
|
LIBS_debug=
|
|
|
|
|
|
|
|
CFLAGS_release=-Os -pipe -march=armv6zk -mcpu=arm1176jzf-s -mtune=arm1176jzf-s -mfpu=vfp -mfloat-abi=hard
|
|
|
|
LIBS_release=
|
|
|
|
|
|
|
|
# target configuration
|
|
|
|
TARGET := ws2801d
|
|
|
|
VERSION := 0.0.0
|
|
|
|
VCSVERSION := $(shell git rev-parse --short HEAD)
|
|
|
|
|
|
|
|
# source files for the project
|
|
|
|
SOURCE := $(shell find src/ -name '*.c')
|
|
|
|
INCLUDES := $(shell find include/ -name '*.h')
|
|
|
|
|
2015-10-10 15:34:33 +02:00
|
|
|
# install destination directory
|
|
|
|
DESTDIR ?= /usr/local
|
|
|
|
|
2013-04-08 23:55:01 +02:00
|
|
|
# --- END OF CONFIG -----------------------------------------------------
|
|
|
|
|
|
|
|
OBJ1=$(patsubst %.c, %.o, $(SOURCE))
|
|
|
|
OBJ=$(patsubst src/%, obj/$(BUILD)/%, $(OBJ1))
|
|
|
|
|
|
|
|
VERSIONSTR="\"$(VERSION)-$(VCSVERSION)\""
|
|
|
|
|
|
|
|
CFLAGS+=-Iinclude -DVERSION=$(VERSIONSTR)
|
|
|
|
|
|
|
|
TARGETFILE := bin/$(BUILD)/$(TARGET)
|
|
|
|
|
|
|
|
all: $(TARGET)
|
|
|
|
|
|
|
|
CFLAGS+=$(CFLAGS_$(BUILD))
|
|
|
|
LIBS+=$(LIBS_$(BUILD))
|
|
|
|
|
|
|
|
.PHONY show_cflags:
|
|
|
|
@echo --- Build parameters: ------------------------------------------
|
|
|
|
@echo CFLAGS\=$(CFLAGS)
|
|
|
|
@echo LIBS\=$(LIBS)
|
|
|
|
@echo SOURCE\=$(SOURCE)
|
|
|
|
@echo -----------------------------------------------------------------
|
|
|
|
|
|
|
|
$(TARGET): show_cflags $(TARGETFILE)
|
|
|
|
@echo ">>> $(BUILD) build complete."
|
|
|
|
|
|
|
|
$(TARGETFILE): $(OBJ) $(INCLUDES) Makefile
|
|
|
|
@echo Linking $@ ...
|
|
|
|
@mkdir -p $(shell dirname $@)
|
|
|
|
@$(LD) -o $(TARGETFILE) $(OBJ) $(LIBS)
|
|
|
|
|
|
|
|
obj/$(BUILD)/%.o: src/%.c $(INCLUDES) Makefile
|
|
|
|
@echo Compiling $< ...
|
|
|
|
@mkdir -p $(shell dirname $@)
|
|
|
|
@$(CXX) -c $(CFLAGS) -o $@ $<
|
|
|
|
|
|
|
|
doc:
|
|
|
|
doxygen doxygen.conf
|
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -f $(TARGETFILE)
|
|
|
|
rm -f $(OBJ)
|
|
|
|
|
2015-10-10 15:34:33 +02:00
|
|
|
install: all
|
|
|
|
install -m 755 $(TARGETFILE) $(DESTDIR)/bin/
|