source: trunk/softs/soft_transpose_giet/Makefile @ 623

Last change on this file since 623 was 623, checked in by alain, 10 years ago

Introducing the soft_hello_giet application.

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