qpc/ports/posix/Makefile
Quantum Leaps cd6736f1fd 5.4.0
2015-04-28 13:45:35 -04:00

227 lines
5.7 KiB
Makefile

##############################################################################
# Product: Makefile for QP/C port to POSIX, GNU toolset
# Last Updated for Version: 5.4.0
# Date of the Last Update: 2015-04-07
#
# Q u a n t u m L e a P s
# ---------------------------
# innovating embedded systems
#
# Copyright (C) Quantum Leaps, LLC. All rights reserved.
#
# This program is open source 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
# (at your option) any later version.
#
# Alternatively, this program may be distributed and modified under the
# terms of Quantum Leaps commercial licenses, which expressly supersede
# the GNU General Public License and are specifically designed for
# licensees interested in retaining the proprietary status of their code.
#
# This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
#
# Contact information:
# Web: http://www.state-machine.com
# Email: info@state-machine.com
##############################################################################
# examples of invoking this Makefile:
# building configurations: Debug (default), Release, and Spy
# make
# make CONF=rel
# make CONF=spy
#
# cleaning configurations: Debug (default), Release, and Spy
# make clean
# make CONF=rel clean
# make CONF=spy clean
#
#-----------------------------------------------------------------------------
# project name
#
PROJECT := qp
#-----------------------------------------------------------------------------
# project directories
#
# location of the QP/C framework
QPC := ../..
# QP port used in this project
QP_PORT_DIR := .
# list of all source directories used by this project
VPATH = \
$(QPC)/source \
$(QP_PORT_DIR)
# list of all include directories needed by this project
INCLUDES = \
-I$(QPC)/include \
-I$(QPC)/source \
-I$(QP_PORT_DIR)
#-----------------------------------------------------------------------------
# files
#
# assembler source files
ASM_SRCS :=
# C source files
C_SRCS := \
qep_hsm.c \
qep_msm.c \
qf_act.c \
qf_actq.c \
qf_defer.c \
qf_dyn.c \
qf_mem.c \
qf_ps.c \
qf_qact.c \
qf_qeq.c \
qf_qmact.c \
qf_time.c \
qf_port.c
C_QS_SRCS := \
qs.c \
qs_fp.c \
qs_64bit.c
# C++ source files
CPP_SRCS :=
# defines
DEFINES :=
#-----------------------------------------------------------------------------
# GNU toolset
#
CC := gcc
LIB := ar
##############################################################################
# Typically, you should not need to change anything below this line
MKDIR := mkdir -p
RM := rm -f
#-----------------------------------------------------------------------------
# build options for various configurations
#
LIBFLAGS := rs
ifeq (rel, $(CONF)) # Release configuration ............................
BIN_DIR = rel
# gcc options
CFLAGS = -c -O2 -ffunction-sections -fdata-sections \
$(INCLUDES) $(DEFINES) -Wall -pthread
else ifeq (spy, $(CONF)) # Spy configuration ................................
BIN_DIR = spy
# gcc options
CFLAGS = -c -g -O -ffunction-sections -fdata-sections $(INCLUDES) \
$(DEFINES) -Wall -pthread -DQ_SPY
# add the QS sources...
C_SRCS += $(C_QS_SRCS)
else # default Debug configuration .......................
BIN_DIR = dbg
# gcc options
CFLAGS = -c -g -O -ffunction-sections -fdata-sections \
$(INCLUDES) $(DEFINES) -Wall -pthread
endif
ASM_OBJS := $(patsubst %.s,%.o, $(notdir $(ASM_SRCS)))
C_OBJS := $(patsubst %.c,%.o, $(notdir $(C_SRCS)))
CPP_OBJS := $(patsubst %.cpp,%.o,$(notdir $(CPP_SRCS)))
TARGET_LIB := $(BIN_DIR)/lib$(PROJECT).a
ASM_OBJS_EXT := $(addprefix $(BIN_DIR)/, $(ASM_OBJS))
C_OBJS_EXT := $(addprefix $(BIN_DIR)/, $(C_OBJS))
C_DEPS_EXT := $(patsubst %.o, %.d, $(C_OBJS_EXT))
CPP_OBJS_EXT := $(addprefix $(BIN_DIR)/, $(CPP_OBJS))
CPP_DEPS_EXT := $(patsubst %.o, %.d, $(CPP_OBJS_EXT))
# create $(BIN_DIR) if it does not exist
ifeq ("$(wildcard $(BIN_DIR))","")
$(shell $(MKDIR) $(BIN_DIR))
endif
#-----------------------------------------------------------------------------
# rules
#
all: $(TARGET_LIB)
-$(RM) $(BIN_DIR)/*.o $(BIN_DIR)/*.d
$(TARGET_LIB) : $(ASM_OBJS_EXT) $(C_OBJS_EXT) $(CPP_OBJS_EXT)
$(LIB) $(LIBFLAGS) $@ $^
$(BIN_DIR)/%.d : %.c
$(CC) -MM -MT $(@:.d=.o) $(CFLAGS) $< > $@
$(BIN_DIR)/%.d : %.cpp
$(CPP) -MM -MT $(@:.d=.o) $(CPPFLAGS) $< > $@
$(BIN_DIR)/%.o : %.s
$(AS) $(ASFLAGS) $< -o $@
$(BIN_DIR)/%.o : %.c
$(CC) $(CFLAGS) -c $< -o $@
$(BIN_DIR)/%.o : %.cpp
$(CPP) $(CPPFLAGS) -c $< -o $@
# include dependency files only if our goal depends on their existence
ifneq ($(MAKECMDGOALS),clean)
ifneq ($(MAKECMDGOALS),show)
-include $(C_DEPS_EXT) $(CPP_DEPS_EXT)
endif
endif
#-----------------------------------------------------------------------------
# the clean target
#
.PHONY : clean
clean:
-$(RM) $(BIN_DIR)/*.o $(BIN_DIR)/*.d $(TARGET_LIB)
#-----------------------------------------------------------------------------
# the show target for debugging
#
show:
@echo PROJECT = $(PROJECT)
@echo CONF = $(CONF)
@echo TARGET_LIB = $(TARGET_LIB)
@echo ASM_SRCS = $(ASM_SRCS)
@echo C_SRCS = $(C_SRCS)
@echo CPP_SRCS = $(CPP_SRCS)
@echo ASM_OBJS_EXT = $(ASM_OBJS_EXT)
@echo C_OBJS_EXT = $(C_OBJS_EXT)
@echo C_DEPS_EXT = $(C_DEPS_EXT)
@echo CPP_DEPS_EXT = $(CPP_DEPS_EXT)