Makefile
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #
  2. # Makefile for parallel port slave drivers
  3. #
  4. O_TARGET := lpslavedrivers.o
  5. obj-y = e100lpslavenet.o e100lpslave_code.o
  6. include $(TOPDIR)/Rules.make
  7. e100lpslave_code.o: e100lpslave.o e100lpslaveld 
  8. $(CROSS_COMPILE)ld -qmagic -Te100lpslaveld e100lpslave.o -o e100lpslave
  9. $(CROSS_COMPILE)objcopy -O binary --remove-section=.data --remove-section=.bss e100lpslave e100lpslave.text
  10. $(CROSS_COMPILE)objcopy -O binary --remove-section=.text --remove-section=.bss e100lpslave e100lpslave.data
  11. cat e100lpslave.text e100lpslave.data |
  12. ./bintocarr.pl e100lpslaveprog |
  13. $(CC) $(CFLAGS) -pipe -o e100lpslave_code.o -c -x c -
  14. ls -l e100lpslave.text e100lpslave.data
  15. rm -f e100lpslave e100lpslave.text e100lpslave.data