|
|
@@ -1,7 +1,7 @@
|
|
|
##############################################################################
|
|
|
-# Product: Generic Makefile for QP/C application, Win32-QV, MinGW compiler
|
|
|
-# Last updated for version 5.4.0
|
|
|
-# Last updated on 2015-04-07
|
|
|
+# Product: Makefile for QP/C, DPP console, Win32-QV, MinGW
|
|
|
+# Last updated for version 5.4.2
|
|
|
+# Last updated on 2015-06-05
|
|
|
#
|
|
|
# Q u a n t u m L e a P s
|
|
|
# ---------------------------
|
|
|
@@ -48,68 +48,83 @@
|
|
|
# http://sourceforge.net/projects/qpc/files/Qtools/
|
|
|
#
|
|
|
|
|
|
-##############################################################################
|
|
|
-#
|
|
|
-# NOTE: Typically, you should have no need to change anything in this Makefile
|
|
|
+#-----------------------------------------------------------------------------
|
|
|
+# project name
|
|
|
#
|
|
|
-##############################################################################
|
|
|
-
|
|
|
+PROJECT := dpp
|
|
|
|
|
|
#-----------------------------------------------------------------------------
|
|
|
+# project directories
|
|
|
+#
|
|
|
+
|
|
|
# location of the QP/C framework (if not provided in an environemnt var.)
|
|
|
ifeq ($(QPC),)
|
|
|
QPC := ../../..
|
|
|
endif
|
|
|
|
|
|
-#-----------------------------------------------------------------------------
|
|
|
-# MinGW toolset (NOTE: assumed to be on your PATH)
|
|
|
-#
|
|
|
-# NOTE:
|
|
|
-# MinGW toolset is included in the Qtools collection for Windows, see:
|
|
|
-# http://sourceforge.net/projects/qpc/files/Qtools/
|
|
|
+# QP port used in this project
|
|
|
+QP_PORT_DIR := $(QPC)/ports/win32-qv
|
|
|
|
|
|
-CC := gcc
|
|
|
-CPP := g++
|
|
|
-LINK := gcc # for C programs
|
|
|
-#LINK := g++ # for C++ programs
|
|
|
+# list of all source directories used by this project
|
|
|
+VPATH = \
|
|
|
+ . \
|
|
|
|
|
|
-# basic utilities (included in Qtools for Windows), see:
|
|
|
-# http://sourceforge.net/projects/qpc/files/Qtools
|
|
|
+# list of all include directories needed by this project
|
|
|
+INCLUDES = \
|
|
|
+ -I. \
|
|
|
+ -I$(QPC)/include
|
|
|
|
|
|
-MKDIR := mkdir
|
|
|
-RM := rm
|
|
|
+# list of resource include directories needed by this project
|
|
|
+RCINCLUDES = \
|
|
|
+ -IRes
|
|
|
|
|
|
|
|
|
#-----------------------------------------------------------------------------
|
|
|
-# directories
|
|
|
+# files
|
|
|
#
|
|
|
-# Project name is derived from the directory name
|
|
|
-PROJECT := $(notdir $(CURDIR))
|
|
|
|
|
|
-QP_PORT_DIR := $(QPC)/ports/win32-qv
|
|
|
-APP_DIR := .
|
|
|
+# C source files...
|
|
|
+C_SRCS := \
|
|
|
+ bsp.c \
|
|
|
+ main.c \
|
|
|
+ philo.c \
|
|
|
+ table.c
|
|
|
+
|
|
|
+# C++ source files...
|
|
|
+CPP_SRCS :=
|
|
|
|
|
|
-VPATH = $(APP_DIR)
|
|
|
+# Resource files...
|
|
|
+RC_SRCS :=
|
|
|
|
|
|
-# include directories
|
|
|
-INCLUDES = -I. \
|
|
|
- -I$(QPC)/include \
|
|
|
- -I$(QP_PORT_DIR)
|
|
|
+LIB_DIRS :=
|
|
|
+LIBS :=
|
|
|
|
|
|
-# defines
|
|
|
-DEFINES =
|
|
|
+# defines...
|
|
|
+# QP_API_VERSION controls the QP API compatibility; 9999 means the latest API
|
|
|
+DEFINES := -DQP_API_VERSION=9999
|
|
|
|
|
|
#-----------------------------------------------------------------------------
|
|
|
-# files
|
|
|
+# MinGW toolset (NOTE: assumed to be on your PATH)
|
|
|
#
|
|
|
+# NOTE:
|
|
|
+# MinGW toolset is included in the Qtools collection for Windows, see:
|
|
|
+# http://sourceforge.net/projects/qpc/files/Qtools/
|
|
|
+#
|
|
|
+# NOTE:
|
|
|
+# This Makefile assumes that the windres utility is available on the
|
|
|
+# PATH (NOTE: windres is available in the Qtools collection for Windows)
|
|
|
+#
|
|
|
+CC := gcc
|
|
|
+CPP := g++
|
|
|
+LINK := gcc # for C programs
|
|
|
+#LINK := g++ # for C++ programs
|
|
|
+RC := windres
|
|
|
|
|
|
-# C source files
|
|
|
-C_SRCS := $(wildcard *.c)
|
|
|
-
|
|
|
-# C++ source files
|
|
|
-CPP_SRCS := $(wildcard *.cpp)
|
|
|
+# basic utilities (included in Qtools for Windows), see:
|
|
|
+# http://sourceforge.net/projects/qpc/files/Qtools
|
|
|
|
|
|
-LD_SCRIPT :=
|
|
|
+MKDIR := mkdir
|
|
|
+RM := rm
|
|
|
|
|
|
#-----------------------------------------------------------------------------
|
|
|
# build options for various configurations
|
|
|
@@ -119,16 +134,14 @@ ifeq (rel, $(CONF)) # Release configuration ..................................
|
|
|
|
|
|
BIN_DIR := rel
|
|
|
|
|
|
-CFLAGS = -c -Wall -W -O2 -ffunction-sections -fdata-sections \
|
|
|
- $(INCLUDES) $(DEFINES) -DNDEBUG
|
|
|
+CFLAGS = -ffunction-sections -fdata-sections \
|
|
|
+ -Os -Wall -W $(INCLUDES) $(DEFINES) -DNDEBUG
|
|
|
|
|
|
-CPPFLAGS = -c -Wall -W -O2 -ffunction-sections -fdata-sections \
|
|
|
- $(INCLUDES) $(DEFINES) -DNDEBUG
|
|
|
+CPPFLAGS = -ffunction-sections -fdata-sections \
|
|
|
+ -Os -Wall -W $(INCLUDES) $(DEFINES) -DNDEBUG
|
|
|
|
|
|
else ifeq (spy, $(CONF)) # Spy configuration ................................
|
|
|
|
|
|
-BIN_DIR := spy
|
|
|
-
|
|
|
# make sure that QTOOLS exists...
|
|
|
ifeq ("$(wildcard $(QTOOLS))","")
|
|
|
$(error QTOOLS not found. Please install Qtools and define QTOOLS env. variable)
|
|
|
@@ -138,32 +151,44 @@ INCLUDES += -I$(QTOOLS)/qspy/include
|
|
|
VPATH += $(QTOOLS)/qspy/source
|
|
|
C_SRCS += qspy.c
|
|
|
|
|
|
-CFLAGS = -c -Wall -W -g -ffunction-sections -fdata-sections \
|
|
|
- $(INCLUDES) $(DEFINES) -DQ_SPY
|
|
|
+BIN_DIR := spy
|
|
|
|
|
|
-CPPFLAGS = -c -Wall -W -g -ffunction-sections -fdata-sections \
|
|
|
- $(INCLUDES) $(DEFINES) -DQ_SPY
|
|
|
+CFLAGS = -g -ffunction-sections -fdata-sections \
|
|
|
+ -O -Wall -W $(INCLUDES) $(DEFINES) -DQ_SPY
|
|
|
+
|
|
|
+CPPFLAGS = -g -ffunction-sections -fdata-sections \
|
|
|
+ -O -Wall -W $(INCLUDES) $(DEFINES) -DQ_SPY
|
|
|
|
|
|
else # default Debug configuration ..........................................
|
|
|
|
|
|
BIN_DIR := dbg
|
|
|
|
|
|
-CFLAGS = -c -Wall -W -g -ffunction-sections -fdata-sections \
|
|
|
- $(INCLUDES) $(DEFINES)
|
|
|
+CFLAGS = -g -ffunction-sections -fdata-sections \
|
|
|
+ -O -Wall -W $(INCLUDES) $(DEFINES)
|
|
|
|
|
|
-CPPFLAGS = -c -Wall -W -g -ffunction-sections -fdata-sections \
|
|
|
- $(INCLUDES) $(DEFINES)
|
|
|
+CPPFLAGS = -g -ffunction-sections -fdata-sections \
|
|
|
+ -O -Wall -W $(INCLUDES) $(DEFINES)
|
|
|
|
|
|
-endif
|
|
|
+endif # .....................................................................
|
|
|
|
|
|
+LINKFLAGS := -Wl,-Map,$(BIN_DIR)/$(PROJECT).map,--cref,--gc-sections
|
|
|
|
|
|
-LINKFLAGS = -L$(QP_PORT_DIR)/mingw/$(BIN_DIR) \
|
|
|
- -Wl,-Map,$(BIN_DIR)/$(PROJECT).map,--cref,--gc-sections
|
|
|
+# is it a GUI application (any GUI resources provided?) ...
|
|
|
+ifneq (,$(RC_SRCS))
|
|
|
+LINKFLAGS += -mwindows
|
|
|
+DEFINES += -DWIN32_GUI
|
|
|
+endif
|
|
|
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
|
|
-C_OBJS := $(patsubst %.c,%.o,$(C_SRCS))
|
|
|
-CPP_OBJS := $(patsubst %.cpp,%.o,$(CPP_SRCS))
|
|
|
+# combine all the soruces...
|
|
|
+INCLUDES += -I$(QP_PORT_DIR)
|
|
|
+LIB_DIRS += -L$(QP_PORT_DIR)/$(BIN_DIR)
|
|
|
+LIBS += -lqp
|
|
|
+
|
|
|
+C_OBJS := $(patsubst %.c, %.o, $(C_SRCS))
|
|
|
+CPP_OBJS := $(patsubst %.cpp, %.o, $(CPP_SRCS))
|
|
|
+RC_OBJS := $(patsubst %.rc, %.o, $(RC_SRCS))
|
|
|
|
|
|
TARGET_BIN := $(BIN_DIR)/$(PROJECT).bin
|
|
|
TARGET_EXE := $(BIN_DIR)/$(PROJECT).exe
|
|
|
@@ -171,6 +196,7 @@ 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))
|
|
|
+RC_OBJS_EXT := $(addprefix $(BIN_DIR)/, $(RC_OBJS))
|
|
|
|
|
|
# create $(BIN_DIR) if it does not exist
|
|
|
ifeq ("$(wildcard $(BIN_DIR))","")
|
|
|
@@ -187,23 +213,23 @@ all: $(TARGET_EXE)
|
|
|
$(TARGET_BIN): $(TARGET_EXE)
|
|
|
$(BIN) -O binary $< $@
|
|
|
|
|
|
-$(TARGET_EXE) : $(C_OBJS_EXT) $(CPP_OBJS_EXT)
|
|
|
- $(LINK) $(LINKFLAGS) -o $@ $^ -lqp
|
|
|
-
|
|
|
-$(BIN_DIR)/%.d : %.c
|
|
|
- $(CC) -MM -MT $(@:.d=.o) $(CFLAGS) $< > $@
|
|
|
+$(TARGET_EXE) : $(C_OBJS_EXT) $(CPP_OBJS_EXT) $(RC_OBJS_EXT)
|
|
|
+ $(LINK) $(LINKFLAGS) $(LIB_DIRS) -o $@ $^ $(LIBS)
|
|
|
|
|
|
$(BIN_DIR)/%.d : %.cpp
|
|
|
$(CPP) -MM -MT $(@:.d=.o) $(CPPFLAGS) $< > $@
|
|
|
|
|
|
-$(BIN_DIR)/%.o : %.s
|
|
|
- $(AS) $(ASFLAGS) $< -o $@
|
|
|
+$(BIN_DIR)/%.d : %.c
|
|
|
+ $(CC) -MM -MT $(@:.d=.o) $(CFLAGS) $< > $@
|
|
|
+
|
|
|
+$(BIN_DIR)/%.o : %.cpp
|
|
|
+ $(CPP) $(CPPFLAGS) -c $< -o $@
|
|
|
|
|
|
$(BIN_DIR)/%.o : %.c
|
|
|
$(CC) $(CFLAGS) -c $< -o $@
|
|
|
|
|
|
-$(BIN_DIR)/%.o : %.cpp
|
|
|
- $(CPP) $(CPPFLAGS) -c $< -o $@
|
|
|
+$(BIN_DIR)/%.o : %.rc
|
|
|
+ $(RC) $(RCINCLUDES) -i $< -o $@
|
|
|
|
|
|
# include dependency files only if our goal depends on their existence
|
|
|
ifneq ($(MAKECMDGOALS),clean)
|
|
|
@@ -228,3 +254,7 @@ show:
|
|
|
@echo C_OBJS_EXT = $(C_OBJS_EXT)
|
|
|
@echo C_DEPS_EXT = $(C_DEPS_EXT)
|
|
|
@echo CPP_DEPS_EXT = $(CPP_DEPS_EXT)
|
|
|
+ @echo CPP_OBJS_EXT = $(CPP_OBJS_EXT)
|
|
|
+ @echo RC_OBJS_EXT = $(RC_OBJS_EXT)
|
|
|
+ @echo LIB_DIRS = $(LIB_DIRS)
|
|
|
+ @echo LIBS = $(LIBS)
|