Ignore:
Timestamp:
Jan 29, 2014, 9:33:16 AM (10 years ago)
Author:
alain
Message:

Introducing the soft_hello_giet application.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/softs/soft_transpose_giet/Makefile

    r244 r623  
    55
    66OBJS =   reset.o \
    7         giet.o \
    8         isr.o \
    9         drivers.o \
    10         stdio.o \
    11         main.o
     7         giet.o \
     8         stdio.o \
     9         main.o
    1210
    1311CFLAGS = -Wall -mno-gpopt -ffreestanding -fomit-frame-pointer -mips32 -ggdb
     
    1917        $(DU) -D $@ > $@.txt
    2018
    21 reset.o: $(GIET)/reset.s
    22         $(AS) -g -mips32 -o $@ $<
     19reset.o: $(GIET)/reset.S hard_config.h
     20        $(CC) -I. $(CFLAGS) -c -o $@ $<
    2321        $(DU) -D $@ > $@.txt
    2422
    25 giet.o: $(GIET)/giet.s
    26         $(AS) -g -mips32 -o $@ $<
     23giet.o: $(GIET)/giet.S hard_config.h
     24        $(CC) -I. $(CFLAGS) -c -o $@ $<
    2725        $(DU) -D $@ > $@.txt
    2826
    29 isr.o: $(GIET)/isr.c
    30         $(CC) $(CFLAGS) -c -o $@ $<
     27stdio.o: $(GIET)/stdio.c hard_config.h
     28        $(CC) -I. $(CFLAGS) -c -o $@ $<
    3129        $(DU) -D $@ > $@.txt
    3230
    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 $@ $<
     31main.o: main.c hard_config.h
     32        $(CC) -I. $(CFLAGS) -I$(GIET) -c -o $@ $<
    4333        $(DU) -D $@ > $@.txt
    4434
    4535clean:
    46         rm -f *.o bin.soft *.txt core *~ proc* term* temp
     36        rm -f *.o bin.soft *.txt core term* temp
Note: See TracChangeset for help on using the changeset viewer.