2010-02-21 23:47:12 +00:00
|
|
|
LINKERSCRIPT = $(MC1322X)/mc1322x.lds
|
|
|
|
LIBMC1322X = $(MC1322X)/libmc1322x
|
2010-02-21 22:34:27 +00:00
|
|
|
|
2010-02-21 23:47:12 +00:00
|
|
|
include $(MC1322X)/config.mk
|
2010-02-21 22:34:27 +00:00
|
|
|
|
2010-02-21 23:47:12 +00:00
|
|
|
include $(MC1322X)/board/Makefile.board
|
|
|
|
|
|
|
|
include $(MC1322X)/libmc1322x/Makefile.lib
|
2010-02-21 22:34:27 +00:00
|
|
|
|
2010-02-22 17:19:39 +00:00
|
|
|
# default start and isr
|
|
|
|
ifndef START
|
|
|
|
START = $(MC1322X)/src/start.o
|
|
|
|
endif
|
|
|
|
ifndef ISR
|
|
|
|
ISR = $(MC1322X)/src/isr.o
|
|
|
|
endif
|
|
|
|
|
2010-02-21 22:34:27 +00:00
|
|
|
ARCH = arm
|
|
|
|
CPU = arm7tdmi-s
|
|
|
|
export ARCH CPU VENDOR
|
|
|
|
|
2010-02-22 23:58:45 +00:00
|
|
|
.SECONDARY:
|
|
|
|
|
|
|
|
$(START): $(START:.o=.s)
|
|
|
|
$(CC) $(AFLAGS) -c -o $@ $<
|
2010-02-21 22:34:27 +00:00
|
|
|
|
2010-02-22 17:19:39 +00:00
|
|
|
$(ISR): $(ISR:.o=.c)
|
|
|
|
$(CC) $(CFLAGS) $(ARM_FLAGS) $< -c -o $@
|
2010-02-21 22:34:27 +00:00
|
|
|
|
2010-02-22 23:58:45 +00:00
|
|
|
%_$(BOARD).elf: %.elf
|
|
|
|
mv $< $@
|
|
|
|
|
|
|
|
%.elf: $(START) $(ISR) $(OBJDIR)/%.o $(LINKERSCRIPT) board
|
2010-02-22 17:19:39 +00:00
|
|
|
$(LD) $(LDFLAGS) $(AOBJS) \
|
|
|
|
--start-group $(PLATFORM_LIBS) --end-group \
|
|
|
|
$(filter %.o %.a,$+) -o $@
|
2010-02-21 22:34:27 +00:00
|
|
|
|
2010-02-22 23:58:45 +00:00
|
|
|
$(OBJDIR)/%.s: %.S
|
|
|
|
$(CPP) $(AFLAGS) -o $@ $<
|
|
|
|
$(OBJDIR)/%.o: %.S
|
|
|
|
$(CC) $(AFLAGS) -c -o $@ $<
|
|
|
|
$(OBJDIR)/%.o: %.c
|
|
|
|
$(CC) $(CFLAGS) $(THUMB_FLAGS) -c -o $@ $<
|
|
|
|
|
|
|
|
|
2010-02-21 22:34:27 +00:00
|
|
|
clean:
|
2010-02-23 00:01:18 +00:00
|
|
|
find $(MC1322X) \
|
2010-02-21 22:34:27 +00:00
|
|
|
\( -name 'core' -o -name '*.bak' -o -name '*~' \
|
2010-02-23 00:01:18 +00:00
|
|
|
-o -name '*.o' -o -name '*.a' -o -name '*.obj' -o -name '*.elf' -o -name '*.s' -o -name '*.map' \
|
|
|
|
-o -name 'obj_*_board' -o -name '.depend' \) -print \
|
|
|
|
| xargs rm -rf
|
2010-02-22 17:24:56 +00:00
|
|
|
rm -fr *.*~
|
2010-02-21 22:34:27 +00:00
|
|
|
|
2010-02-22 17:24:56 +00:00
|
|
|
clobber \
|
2010-02-21 22:34:27 +00:00
|
|
|
mrproper \
|
2010-02-22 17:24:56 +00:00
|
|
|
distclean: clean
|