OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [freertos-6.1.1/] [Demo/] [HCS12_GCC_banked/] [Makefile] - Blame information for rev 615

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 588 jeremybenn
# Demo for GCC/HCS12 port of FreeRTOS
2
#   Author Jefferson Smith
3
#
4
SRCDIR=../..
5
RTOS_BASEDIR=$(SRCDIR)/Source
6
 
7
# what board to compile for
8
TARGET_BOARD ?= dragon12-rom
9
CPU=m68hcs12
10
 
11
DEVC_PREFIX=m6811-elf-
12
CC=$(DEVC_PREFIX)gcc
13
AS=$(DEVC_PREFIX)as
14
AR=$(DEVC_PREFIX)ar
15
OBJCOPY=$(DEVC_PREFIX)objcopy
16
OBJDUMP=$(DEVC_PREFIX)objdump
17
 
18
CPPFLAGS+=-I. -I./asm-$(CPU)/arch-dragon12 -I../Common/include \
19
  -I$(RTOS_BASEDIR)/include -DGCC_HCS12 -DM6812_DEF_SCI=1 -DPORT_LED=M6811_PORTB
20
 
21
CFLAGS+=-$(CPU) -mshort -mlong-calls -g -Os -Wall -Wmissing-prototypes \
22
  -Wno-char-subscripts -fomit-frame-pointer -msoft-reg-count=0 -mauto-incdec
23
#-Os -fomit-frame-pointer
24
 
25
LDFLAGS+=-$(CPU) -mshort -mlong-calls -Wl,-T,ldscript-rtos.x
26
 
27
OBJCOPY_FLAGS=--srec-len=0x20 --change-addresses 0xffff0000
28
 
29
CSRCS=main.c startup.c vectors.c serial.c sci.c ParTest.c gelfunc.c \
30
  ../Common/Minimal/flash.c \
31
  ../Common/Minimal/dynamic.c \
32
  ../Common/Minimal/BlockQ.c \
33
  ../Common/Minimal/PollQ.c \
34
  ../Common/Minimal/comtest.c \
35
  ../Common/Minimal/integer.c \
36
  ../Common/Minimal/death.c \
37
 
38
RTOS_OBJS = $(RTOS_BASEDIR)/portable/GCC/HCS12/port.c \
39
  $(RTOS_BASEDIR)/portable/MemMang/heap_2.c \
40
  $(RTOS_BASEDIR)/list.c \
41
  $(RTOS_BASEDIR)/tasks.c \
42
  $(RTOS_BASEDIR)/queue.c
43
 
44
OBJS=$(CSRCS:.c=.o) $(RTOS_OBJS:.c=.o)
45
 
46
#
47
# *.elf for the simulator and gdb
48
# *.s19 is original S Records from ld
49
# *.s2 is S2 Records (from SRecCvt.exe)
50
#
51
all::   main.elf main.lst main.s19
52
 
53
main.elf:       $(OBJS)
54
        $(CC) $(LDFLAGS) -o $@ $^ -lc -lbcc -lc
55
 
56
%.lst:  %.elf
57
        $(OBJDUMP) -htS $< >$@
58
 
59
%.s19:  %.elf
60
        $(OBJCOPY) --output-target=srec $(OBJCOPY_FLAGS) $< $*.s19
61
 
62
clean::
63
        $(RM) $(OBJS) *.elf *.s19
64
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.