2007-10-04 17:39:29 +00:00
|
|
|
#
|
|
|
|
# !!!! Do NOT edit this makefile with an editor which replace tabs by spaces !!!!
|
|
|
|
#
|
|
|
|
##############################################################################################
|
|
|
|
#
|
|
|
|
# On command line:
|
|
|
|
#
|
|
|
|
# make all = Create project
|
|
|
|
#
|
|
|
|
# make clean = Clean project files.
|
|
|
|
#
|
|
|
|
# To rebuild project do "make clean" and "make all".
|
|
|
|
#
|
|
|
|
|
|
|
|
##############################################################################################
|
|
|
|
# Start of default section
|
|
|
|
#
|
|
|
|
|
|
|
|
TRGT = arm-elf-
|
|
|
|
CC = $(TRGT)gcc
|
|
|
|
CP = $(TRGT)objcopy
|
|
|
|
AS = $(TRGT)gcc -x assembler-with-cpp
|
|
|
|
OD = $(TRGT)objdump
|
|
|
|
HEX = $(CP) -O ihex
|
|
|
|
BIN = $(CP) -O binary
|
|
|
|
|
|
|
|
MCU = arm7tdmi
|
|
|
|
|
|
|
|
# List all default C defines here, like -D_DEBUG=1
|
|
|
|
DDEFS =
|
|
|
|
|
|
|
|
# List all default ASM defines here, like -D_DEBUG=1
|
|
|
|
DADEFS =
|
|
|
|
|
|
|
|
# List all default directories to look for include files here
|
|
|
|
DINCDIR =
|
|
|
|
|
|
|
|
# List the default directory to look for the libraries here
|
|
|
|
DLIBDIR =
|
|
|
|
|
|
|
|
# List all default libraries here
|
|
|
|
DLIBS =
|
|
|
|
|
|
|
|
#
|
|
|
|
# End of default section
|
|
|
|
##############################################################################################
|
|
|
|
|
|
|
|
##############################################################################################
|
|
|
|
# Start of user section
|
|
|
|
#
|
|
|
|
|
|
|
|
# Define project name here
|
|
|
|
PROJECT = ch
|
|
|
|
|
|
|
|
# Define linker script file here
|
|
|
|
LDSCRIPT= ch.ld
|
|
|
|
|
|
|
|
# List all user C define here, like -D_DEBUG=1
|
|
|
|
UDEFS =
|
|
|
|
|
|
|
|
# Define ASM defines here
|
|
|
|
UADEFS =
|
|
|
|
|
|
|
|
# List ARM-mode C source files here
|
2008-02-22 11:09:02 +00:00
|
|
|
ASRC = ../../ports/ARM7-LPC214x/chcore.c \
|
|
|
|
../../ports/ARM7-LPC214x/vic.c \
|
|
|
|
../../ports/ARM7-LPC214x/lpc214x_serial.c \
|
|
|
|
../../ports/ARM7-LPC214x/lpc214x_ssp.c \
|
2007-11-12 15:02:23 +00:00
|
|
|
../../src/chinit.c ../../src/chdebug.c ../../src/chlists.c ../../src/chdelta.c \
|
2007-12-16 19:01:30 +00:00
|
|
|
../../src/chschd.c ../../src/chthreads.c ../../src/chsem.c ../../src/chmtx.c \
|
|
|
|
../../src/chevents.c ../../src/chmsg.c ../../src/chsleep.c ../../src/chqueues.c \
|
|
|
|
../../src/chserial.c \
|
2007-11-16 13:14:30 +00:00
|
|
|
../../src/lib/evtimer.c ../../test/test.c \
|
2007-12-18 09:41:28 +00:00
|
|
|
board.c buzzer.c mmcsd.c main.c
|
2007-10-04 17:39:29 +00:00
|
|
|
|
|
|
|
# List THUMB-mode C sources here
|
|
|
|
# NOTE: If any module is compiled in thumb mode then -mthumb-interwork is
|
|
|
|
# enabled for all modules and that lowers performance.
|
|
|
|
TSRC =
|
|
|
|
|
|
|
|
# List ASM source files here
|
2008-02-22 11:17:42 +00:00
|
|
|
ASMSRC = ../../ports/ARM7-LPC214x/crt0.s ../../ports/ARM7/chsys.s
|
2007-10-04 17:39:29 +00:00
|
|
|
|
|
|
|
# List all user directories here
|
2008-02-22 11:09:02 +00:00
|
|
|
UINCDIR = ../../src/include ../../src/lib \
|
|
|
|
../../ports/ARM7 ../../ports/ARM7-LPC214x
|
2007-10-04 17:39:29 +00:00
|
|
|
|
|
|
|
# List the user directory to look for the libraries here
|
|
|
|
ULIBDIR =
|
|
|
|
|
|
|
|
# List all user libraries here
|
|
|
|
ULIBS =
|
|
|
|
|
|
|
|
# ARM-specific options here
|
|
|
|
AOPT =
|
|
|
|
|
|
|
|
# THUMB-specific options here
|
|
|
|
TOPT = -mthumb -D THUMB
|
|
|
|
|
|
|
|
# Common options here
|
2007-11-14 16:32:41 +00:00
|
|
|
# NOTE: -ffixed-r7 is only needed if you enabled CH_CURRP_REGISTER_CACHE in
|
|
|
|
# chconf.h.
|
|
|
|
# NOTE: -falign-functions=16 may improve the performance, not always, but
|
|
|
|
# increases the code size.
|
2008-04-23 08:36:16 +00:00
|
|
|
OPT = -O2 -ggdb -fomit-frame-pointer -mabi=apcs-gnu
|
2007-11-13 16:38:23 +00:00
|
|
|
#OPT += -ffixed-r7
|
2007-11-16 13:14:30 +00:00
|
|
|
OPT += -falign-functions=16
|
2007-10-04 17:39:29 +00:00
|
|
|
|
|
|
|
# Define warning options here
|
|
|
|
WARN = -Wall -Wstrict-prototypes
|
|
|
|
|
|
|
|
#
|
|
|
|
# End of user defines
|
|
|
|
##############################################################################################
|
|
|
|
|
|
|
|
INCDIR = $(patsubst %,-I%,$(DINCDIR) $(UINCDIR))
|
|
|
|
LIBDIR = $(patsubst %,-L%,$(DLIBDIR) $(ULIBDIR))
|
|
|
|
DEFS = $(DDEFS) $(UDEFS)
|
|
|
|
ADEFS = $(DADEFS) $(UADEFS)
|
|
|
|
AOBJS = $(ASRC:.c=.o)
|
|
|
|
TOBJS = $(TSRC:.c=.o)
|
|
|
|
OBJS = $(ASMOBJS) $(AOBJS) $(TOBJS)
|
|
|
|
ASMOBJS = $(ASMSRC:.s=.o)
|
|
|
|
LIBS = $(DLIBS) $(ULIBS)
|
|
|
|
MCFLAGS = -mcpu=$(MCU)
|
|
|
|
|
|
|
|
ASFLAGS = $(MCFLAGS) -Wa,-amhls=$(<:.s=.lst) $(ADEFS)
|
2007-12-08 12:05:22 +00:00
|
|
|
CPFLAGS = $(MCFLAGS) $(OPT) $(WARN) -Wa,-alms=$(<:.c=.lst) $(DEFS)
|
2007-10-04 17:39:29 +00:00
|
|
|
LDFLAGS = $(MCFLAGS) -nostartfiles -T$(LDSCRIPT) -Wl,-Map=$(PROJECT).map,--cref,--no-warn-mismatch $(LIBDIR)
|
|
|
|
ODFLAGS = -x --syms
|
|
|
|
|
2007-11-21 16:42:13 +00:00
|
|
|
# Thumb interwork enabled only if needed because it kills performance.
|
2007-10-04 17:39:29 +00:00
|
|
|
ifneq ($(TSRC),)
|
2007-12-18 14:00:01 +00:00
|
|
|
CPFLAGS += -D THUMB_PRESENT
|
2008-02-22 11:09:02 +00:00
|
|
|
ASFLAGS += -D THUMB_PRESENT
|
2007-11-21 16:42:13 +00:00
|
|
|
ifneq ($(ASRC),)
|
2007-12-18 14:00:01 +00:00
|
|
|
# Mixed ARM and THUMB case.
|
|
|
|
CPFLAGS += -mthumb-interwork
|
2007-11-21 16:42:13 +00:00
|
|
|
LDFLAGS += -mthumb-interwork
|
|
|
|
else
|
2007-12-18 14:00:01 +00:00
|
|
|
# Pure THUMB case, THUMB C code cannot be called by ARM asm code directly.
|
2008-04-23 08:36:16 +00:00
|
|
|
CPFLAGS += -mno-thumb-interwork -D THUMB_NO_INTERWORKING
|
|
|
|
LDFLAGS += -mno-thumb-interwork -mthumb
|
2007-12-18 14:00:01 +00:00
|
|
|
ASFLAGS += -D THUMB_NO_INTERWORKING
|
2007-11-21 16:42:13 +00:00
|
|
|
endif
|
2008-04-23 08:36:16 +00:00
|
|
|
else
|
|
|
|
CPFLAGS += -mno-thumb-interwork
|
|
|
|
LDFLAGS += -mno-thumb-interwork
|
2007-10-04 17:39:29 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
# Generate dependency information
|
|
|
|
CPFLAGS += -MD -MP -MF .dep/$(@F).d
|
|
|
|
|
|
|
|
#
|
|
|
|
# Makefile rules
|
|
|
|
#
|
|
|
|
|
|
|
|
all: $(OBJS) $(PROJECT).elf $(PROJECT).hex $(PROJECT).bin $(PROJECT).dmp
|
|
|
|
|
|
|
|
$(AOBJS) : %.o : %.c
|
2007-10-06 08:58:52 +00:00
|
|
|
@echo
|
2007-10-04 17:39:29 +00:00
|
|
|
$(CC) -c $(CPFLAGS) $(AOPT) -I . $(INCDIR) $< -o $@
|
|
|
|
|
|
|
|
$(TOBJS) : %.o : %.c
|
2007-10-06 08:58:52 +00:00
|
|
|
@echo
|
2007-12-18 14:00:01 +00:00
|
|
|
$(CC) -c $(CPFLAGS) $(TOPT) -I . $(INCDIR) $< -o $@
|
2007-10-04 17:39:29 +00:00
|
|
|
|
|
|
|
$(ASMOBJS) : %.o : %.s
|
2007-10-06 08:58:52 +00:00
|
|
|
@echo
|
2007-12-18 09:41:28 +00:00
|
|
|
$(AS) -c $(ASFLAGS) -I . $(INCDIR) $< -o $@
|
2007-10-04 17:39:29 +00:00
|
|
|
|
|
|
|
%elf: $(OBJS)
|
2007-10-06 08:58:52 +00:00
|
|
|
@echo
|
2007-10-04 17:39:29 +00:00
|
|
|
$(CC) $(ASMOBJS) $(AOBJS) $(TOBJS) $(LDFLAGS) $(LIBS) -o $@
|
|
|
|
|
|
|
|
%hex: %elf
|
|
|
|
$(HEX) $< $@
|
|
|
|
|
|
|
|
%bin: %elf
|
|
|
|
$(BIN) $< $@
|
|
|
|
|
|
|
|
%dmp: %elf
|
|
|
|
$(OD) $(ODFLAGS) $< > $@
|
|
|
|
|
|
|
|
clean:
|
|
|
|
-rm -f $(OBJS)
|
|
|
|
-rm -f $(PROJECT).elf
|
|
|
|
-rm -f $(PROJECT).dmp
|
|
|
|
-rm -f $(PROJECT).map
|
|
|
|
-rm -f $(PROJECT).hex
|
|
|
|
-rm -f $(PROJECT).bin
|
|
|
|
-rm -f $(ASRC:.c=.c.bak)
|
|
|
|
-rm -f $(ASRC:.c=.lst)
|
|
|
|
-rm -f $(TSRC:.c=.c.bak)
|
|
|
|
-rm -f $(TSRC:.c=.lst)
|
|
|
|
-rm -f $(ASMSRC:.s=.s.bak)
|
|
|
|
-rm -f $(ASMSRC:.s=.lst)
|
|
|
|
-rm -fR .dep
|
|
|
|
|
|
|
|
#
|
|
|
|
# Include the dependency files, should be the last of the makefile
|
|
|
|
#
|
|
|
|
-include $(shell mkdir .dep 2>/dev/null) $(wildcard .dep/*)
|
|
|
|
|
|
|
|
# *** EOF ***
|