Changeset 810 for trunk/softs/soft_hello_giet/Makefile
- Timestamp:
- Sep 19, 2014, 2:53:18 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/softs/soft_hello_giet/Makefile
r623 r810 4 4 DU = mipsel-unknown-elf-objdump 5 5 6 OBJS = 7 8 9 6 OBJS = reset.o \ 7 giet.o \ 8 stdio.o \ 9 main.o 10 10 11 CFLAGS = -Wall -mno-gpopt -ffreestanding -fomit-frame-pointer -mips32 -ggdb11 CFLAGS = -Wall -mno-gpopt -ffreestanding -fomit-frame-pointer -mips32 12 12 13 13 GIET = ../giet_tsar 14 14 15 bin.soft: $(OBJS) ldscript16 $(LD) -o $@ -T ldscript$(OBJS)15 bin.soft: $(OBJS) giet.ld 16 $(LD) -o $@ -T giet.ld $(OBJS) 17 17 $(DU) -D $@ > $@.txt 18 18 … … 33 33 $(DU) -D $@ > $@.txt 34 34 35 giet.ld: giet.ld.in 36 $(CC) -x c -P -E -I. $< -o $@ 37 35 38 clean: 36 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.