Makefile
上传用户:wudi5211
上传日期:2010-01-21
资源大小:607k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

C/C++

  1. CFLAGS = -O
  2. SUBDIRS =  misc-progs misc-modules 
  3.            scull sbull snull short pci
  4. FTPDIR = ../ftp
  5. all: subdirs
  6. subdirs:
  7. for n in $(SUBDIRS); do $(MAKE) -C $$n || exit 1; done
  8. clean:
  9. rm -f *.o *~
  10. for n in $(SUBDIRS); do $(MAKE) -C $$n clean; done
  11. ## These are for internal use, and won't work with the released sources.
  12. checkthem:
  13. for n in $(SUBDIRS); do $(MAKE) -C $$n checkthem; done
  14. check:
  15. for n in $(SUBDIRS); do $(MAKE) -C $$n check; done
  16. objs:
  17. for n in $(SUBDIRS); do $(MAKE) -C $$n objs; done
  18. testneed:
  19. for n in $(SUBDIRS); do $(MAKE) -C $$n testneed; done
  20. ftp: clean
  21. -@mkdir $(FTPDIR)
  22. shar -V -x * | ../tools/sharfilter | (cd $(FTPDIR) && sh -)