# PPC makefile scripts and rules. # Output directory and files ifeq ($(BUILDDIR),) BUILDDIR = build endif ifeq ($(BUILDDIR),.) BUILDDIR = build endif OUTFILES = $(BUILDDIR)/$(PROJECT).elf $(BUILDDIR)/$(PROJECT).hex \ $(BUILDDIR)/$(PROJECT).bin $(BUILDDIR)/$(PROJECT).dmp # Automatic compiler options OPT = $(USE_OPT) COPT = $(USE_COPT) CPPOPT = $(USE_CPPOPT) ifeq ($(USE_LINK_GC),yes) OPT += -ffunction-sections -fdata-sections endif # VLE option handling. ifeq ($(USE_VLE),yes) DDEFS += -DPPC_USE_VLE=1 DADEFS += -DPPC_USE_VLE=1 MCU += -mvle else DDEFS += -DPPC_USE_VLE=0 DADEFS += -DPPC_USE_VLE=0 endif # Source files groups and paths SRC = $(CSRC)$(CPPSRC) SRCPATHS = $(sort $(dir $(ASMXSRC)) $(dir $(ASMSRC)) $(dir $(SRC))) # Various directories OBJDIR = $(BUILDDIR)/obj LSTDIR = $(BUILDDIR)/lst # Object files groups COBJS = $(addprefix $(OBJDIR)/, $(notdir $(CSRC:.c=.o))) CPPOBJS = $(addprefix $(OBJDIR)/, $(notdir $(CPPSRC:.cpp=.o))) ASMOBJS = $(addprefix $(OBJDIR)/, $(notdir $(ASMSRC:.s=.o))) ASMXOBJS = $(addprefix $(OBJDIR)/, $(notdir $(ASMXSRC:.S=.o))) OBJS = $(ASMXOBJS) $(ASMOBJS) $(COBJS) $(CPPOBJS) # Paths IINCDIR = $(patsubst %,-I%,$(INCDIR) $(DINCDIR) $(UINCDIR)) LLIBDIR = $(patsubst %,-L%,$(DLIBDIR) $(ULIBDIR)) # Macros DEFS = $(DDEFS) $(UDEFS) ADEFS = $(DADEFS) $(UADEFS) # Libs LIBS = $(DLIBS) $(ULIBS) # Various settings MCFLAGS = -mcpu=$(MCU) ODFLAGS = -x --syms ASFLAGS = $(MCFLAGS) -Wa,-amhls=$(LSTDIR)/$(notdir $(<:.s=.lst)) $(ADEFS) ASXFLAGS = $(MCFLAGS) -Wa,-amhls=$(LSTDIR)/$(notdir $(<:.S=.lst)) $(ADEFS) CFLAGS = $(MCFLAGS) $(OPT) $(COPT) $(CWARN) -Wa,-alms=$(LSTDIR)/$(notdir $(<:.c=.lst)) $(DEFS) CPPFLAGS = $(MCFLAGS) $(OPT) $(CPPOPT) $(CPPWARN) -Wa,-alms=$(LSTDIR)/$(notdir $(<:.cpp=.lst)) $(DEFS) ifeq ($(USE_LINK_GC),yes) GCLDFLAGS = ,--gc-sections else GCLDFLAGS = endif ifneq ($(USE_LDOPT),) XLDFLAGS =,$(USE_LDOPT) else XLDFLAGS = endif LDFLAGS = $(MCFLAGS) -nostartfiles -T$(LDSCRIPT) -Wl,-Map=$(BUILDDIR)/$(PROJECT).map,--cref,--no-warn-mismatch$(GCLDFLAGS)$(XLDFLAGS) $(LLIBDIR) # Generate dependency information CFLAGS += -MD -MP -MF .dep/$(@F).d CPPFLAGS += -MD -MP -MF .dep/$(@F).d # Paths where to search for sources VPATH = $(SRCPATHS) # # Makefile rules # all: $(OBJS) $(OUTFILES) MAKE_ALL_RULE_HOOK MAKE_ALL_RULE_HOOK: $(OBJS): | $(BUILDDIR) $(BUILDDIR) $(OBJDIR) $(LSTDIR): ifneq ($(USE_VERBOSE_COMPILE),yes) @echo Compiler Options @echo $(CC) -c $(CFLAGS) -I. $(IINCDIR) main.c -o main.o @echo endif mkdir -p $(OBJDIR) mkdir -p $(LSTDIR) $(CPPOBJS) : $(OBJDIR)/%.o : %.cpp Makefile ifeq ($(USE_VERBOSE_COMPILE),yes) @echo $(CPPC) -c $(CPPFLAGS) -I. $(IINCDIR) $< -o $@ else @echo Compiling $( $@ else @echo Creating $@ @$(OD) $(ODFLAGS) $< > $@ @echo Done endif clean: @echo Cleaning -rm -fR .dep $(BUILDDIR) @echo Done # # Include the dependency files, should be the last of the makefile # -include $(shell mkdir .dep 2>/dev/null) $(wildcard .dep/*) # *** EOF ***