source: branches/fault_tolerance/softs/soft_transpose_giet/Makefile @ 745

Last change on this file since 745 was 745, checked in by cfuguet, 10 years ago

Merge 'trunk' new modifications into 'fault_tolerance'

File size: 853 bytes
Line 
1LD = mipsel-unknown-elf-ld
2CC = mipsel-unknown-elf-gcc
3AS = mipsel-unknown-elf-as
4DU = mipsel-unknown-elf-objdump
5
6OBJS = reset.o \
7       giet.o \
8       stdio.o \
9       main.o
10
11CFLAGS = -Wall -mno-gpopt -ffreestanding -fomit-frame-pointer -mips32 \
12         -msoft-float -O2 \
13         # -ggdb -mlong-calls
14
15GIET =  ../giet_tsar
16
17bin.soft: $(OBJS) ldscript
18        $(LD) -o $@ -T ldscript $(OBJS)
19        $(DU) -D $@ > $@.txt
20
21reset.o: $(GIET)/reset.S hard_config.h
22        $(CC) -I. -I$(GIET) $(CFLAGS) -c -o $@ $<
23        $(DU) -D $@ > $@.txt
24
25giet.o: $(GIET)/giet.S hard_config.h
26        $(CC) -I. $(CFLAGS) -c -o $@ $<
27        $(DU) -D $@ > $@.txt
28
29stdio.o: $(GIET)/stdio.c hard_config.h
30        $(CC) -I. $(CFLAGS) -c -o $@ $<
31        $(DU) -D $@ > $@.txt
32
33main.o: main.c hard_config.h
34        $(CC) -I. $(CFLAGS) -I$(GIET) -c -o $@ $<
35        $(DU) -D $@ > $@.txt
36
37clean:
38        rm -f *.o bin.soft *.txt core term* temp
Note: See TracBrowser for help on using the repository browser.