Last change
on this file since 160 was
158,
checked in by alain, 14 years ago
|
Introducing the three sub-directories in the softs directory:
- giet_tsar
- soft_filter_giet
- soft_transpose_giet
|
File size:
901 bytes
|
Rev | Line | |
---|
[158] | 1 | LD=mipsel-unknown-elf-ld |
---|
| 2 | CC=mipsel-unknown-elf-gcc |
---|
| 3 | AS=mipsel-unknown-elf-as |
---|
| 4 | DU=mipsel-unknown-elf-objdump |
---|
| 5 | |
---|
| 6 | OBJS= reset.o \ |
---|
| 7 | giet.o \ |
---|
| 8 | isr.o \ |
---|
| 9 | drivers.o \ |
---|
| 10 | stdio.o \ |
---|
| 11 | main.o |
---|
| 12 | |
---|
| 13 | CFLAGS= -Wall -mno-gpopt -ffreestanding -fomit-frame-pointer -mips32 -ggdb |
---|
| 14 | |
---|
| 15 | GIET= /Users/alain/soc/tsar-svn-june-2010/softs/giet_tsar |
---|
| 16 | |
---|
| 17 | bin.soft: $(OBJS) ldscript |
---|
| 18 | $(LD) -o $@ -T ldscript $(OBJS) |
---|
| 19 | $(DU) -D $@ > $@.txt |
---|
| 20 | |
---|
| 21 | reset.o: reset.s |
---|
| 22 | $(AS) -g -mips32 -o $@ $< |
---|
| 23 | $(DU) -D $@ > $@.txt |
---|
| 24 | |
---|
| 25 | giet.o: $(GIET)/giet.s |
---|
| 26 | $(AS) -g -mips32 -o $@ $< |
---|
| 27 | $(DU) -D $@ > $@.txt |
---|
| 28 | |
---|
| 29 | isr.o: $(GIET)/isr.c |
---|
| 30 | $(CC) $(CFLAGS) -c -o $@ $< |
---|
| 31 | $(DU) -D $@ > $@.txt |
---|
| 32 | |
---|
| 33 | stdio.o: $(GIET)/stdio.c |
---|
| 34 | $(CC) $(CFLAGS) -c -o $@ $< |
---|
| 35 | $(DU) -D $@ > $@.txt |
---|
| 36 | |
---|
| 37 | drivers.o: $(GIET)/drivers.c |
---|
| 38 | $(CC) $(CFLAGS) -c -o $@ $< |
---|
| 39 | $(DU) -D $@ > $@.txt |
---|
| 40 | |
---|
| 41 | main.o: main.c |
---|
| 42 | $(CC) $(CFLAGS) -I$(GIET) -c -o $@ $< |
---|
| 43 | $(DU) -D $@ > $@.txt |
---|
| 44 | |
---|
| 45 | clean: |
---|
| 46 | rm -f *.o bin.soft *.txt core *~ proc* term* temp |
---|
Note: See
TracBrowser
for help on using the repository browser.