Changeset 623 for trunk/softs/soft_transpose_giet/Makefile
- Timestamp:
- Jan 29, 2014, 9:33:16 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/softs/soft_transpose_giet/Makefile
r244 r623 5 5 6 6 OBJS = 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 12 10 13 11 CFLAGS = -Wall -mno-gpopt -ffreestanding -fomit-frame-pointer -mips32 -ggdb … … 19 17 $(DU) -D $@ > $@.txt 20 18 21 reset.o: $(GIET)/reset. s22 $( AS) -g -mips32-o $@ $<19 reset.o: $(GIET)/reset.S hard_config.h 20 $(CC) -I. $(CFLAGS) -c -o $@ $< 23 21 $(DU) -D $@ > $@.txt 24 22 25 giet.o: $(GIET)/giet. s26 $( AS) -g -mips32-o $@ $<23 giet.o: $(GIET)/giet.S hard_config.h 24 $(CC) -I. $(CFLAGS) -c -o $@ $< 27 25 $(DU) -D $@ > $@.txt 28 26 29 isr.o: $(GIET)/isr.c 30 $(CC) $(CFLAGS) -c -o $@ $<27 stdio.o: $(GIET)/stdio.c hard_config.h 28 $(CC) -I. $(CFLAGS) -c -o $@ $< 31 29 $(DU) -D $@ > $@.txt 32 30 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 $@ $< 31 main.o: main.c hard_config.h 32 $(CC) -I. $(CFLAGS) -I$(GIET) -c -o $@ $< 43 33 $(DU) -D $@ > $@.txt 44 34 45 35 clean: 46 rm -f *.o bin.soft *.txt core *~ proc*term* temp36 rm -f *.o bin.soft *.txt core term* temp
Note: See TracChangeset
for help on using the changeset viewer.