我看了ADS的帮助,说可以用Makefile Importer Wizard 建立project.。我导入一个makefile(从http://www.lumit.org下载)后,点完成,跳出错误提示:Counld't successfully import makefile because no linkable target could be found.Check the linker settings specified in makefile.dat .
makefile如下,不知该如何解决
# # makefile -- test led project and show how to use makefile ! # # Author: lumit-admin <admin@lumit.org> # Date: 2004-8-17 # Copyleft: http://www.lumit.org #
l0: armasm -g led_0000.s -o led_0000.o armlink -ro-base 0x0 -entry 0x0 led_0000.o -o led_0000.axf fromelf led_0000.axf -bin -output led_0000.bin
l1: armasm -g led_1111.s -o led_1111.o armlink -ro-base 0x0 -entry 0x0 led_1111.o -o led_1111.axf fromelf led_1111.axf -bin -output led_1111.bin lb: armasm -g led_blink.s -o led_blink.o armlink -ro-base 0x0 -entry 0x0 led_blink.o -o led_blink.axf fromelf led_blink.axf -bin -output led_blink.bin
lb2: armasm -g led_blink2.s -o led_blink2.o armlink -ro-base 0x0 -entry 0x0 led_blink2.o -o led_blink2.axf fromelf led_blink2.axf -bin -output led_blink2.bin j0: -lumit-sjf4510-1.1.0.exe led_0000.bin
j1: -lumit-sjf4510-1.1.0.exe led_1111.bin
jb: -lumit-sjf4510-1.1.0.exe led_blink.bin
jb2: -lumit-sjf4510-1.1.0.exe led_blink2.bin
#************************************************************ # clean up the development tree. #************************************************************ clean: # clean up rm -f *~ rm -f *.o rm -f *.axf rm -f *.bin rm -f *.elf