source: trunk/softs/soft_transpose_giet/Makefile @ 163

Last change on this file since 163 was 163, checked in by simerabe, 13 years ago

remove duplicate reset.s

File size: 870 bytes
RevLine 
[158]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        isr.o \
9        drivers.o \
10        stdio.o \
11        main.o
12
13CFLAGS= -Wall -mno-gpopt -ffreestanding -fomit-frame-pointer -mips32 -ggdb
14
[163]15GIET=   ../giet_tsar
[158]16
17bin.soft: $(OBJS) ldscript
18        $(LD) -o $@ -T ldscript $(OBJS)
19        $(DU) -D $@ > $@.txt
20
[163]21reset.o: $(GIET)/reset.s
[158]22        $(AS) -g -mips32 -o $@ $<
23        $(DU) -D $@ > $@.txt
24
25giet.o: $(GIET)/giet.s
26        $(AS) -g -mips32 -o $@ $<
27        $(DU) -D $@ > $@.txt
28
29isr.o: $(GIET)/isr.c
30        $(CC) $(CFLAGS) -c -o $@ $<
31        $(DU) -D $@ > $@.txt
32
33stdio.o: $(GIET)/stdio.c
34        $(CC) $(CFLAGS) -c -o $@ $<
35        $(DU) -D $@ > $@.txt
36
37drivers.o: $(GIET)/drivers.c
38        $(CC) $(CFLAGS) -c -o $@ $<
39        $(DU) -D $@ > $@.txt
40
41main.o: main.c
42        $(CC) $(CFLAGS) -I$(GIET) -c -o $@ $<
43        $(DU) -D $@ > $@.txt
44
45clean:
46        rm -f *.o bin.soft *.txt core *~ proc* term* temp
Note: See TracBrowser for help on using the repository browser.