Changeset 810 for trunk/softs/soft_transpose_giet/Makefile
- Timestamp:
- Sep 19, 2014, 2:53:18 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/softs/soft_transpose_giet/Makefile
r744 r810 9 9 main.o 10 10 11 CFLAGS = -Wall -mno-gpopt -ffreestanding -fomit-frame-pointer -mips32 \ 12 -msoft-float -O2 \ 13 # -ggdb -mlong-calls 11 CFLAGS = -Wall -mno-gpopt -ffreestanding -fomit-frame-pointer -mips32 14 12 15 13 GIET = ../giet_tsar 16 14 17 bin.soft: $(OBJS) ldscript18 $(LD) -o $@ -T ldscript$(OBJS)15 bin.soft: $(OBJS) giet.ld 16 $(LD) -o $@ -T giet.ld $(OBJS) 19 17 $(DU) -D $@ > $@.txt 20 18 21 19 reset.o: $(GIET)/reset.S hard_config.h 22 $(CC) -I. -I$(GIET)$(CFLAGS) -c -o $@ $<20 $(CC) -I. $(CFLAGS) -c -o $@ $< 23 21 $(DU) -D $@ > $@.txt 24 22 … … 35 33 $(DU) -D $@ > $@.txt 36 34 35 giet.ld: giet.ld.in 36 $(CC) -x c -P -E -I. $< -o $@ 37 37 38 clean: 38 rm -f *.o bin.soft *.txt core term* temp 39 rm -f *.o bin.soft *.txt core term* temp giet.ld
Note: See TracChangeset
for help on using the changeset viewer.