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

嵌入式Linux

开发平台:

C/C++

  1. CFLAGS = -O
  2. SUBDIRS =  misc-progs misc-modules 
  3.            skull scull scullp scullv sbull spull snull
  4.    short stepper pci
  5. FTPDIR = ../ftp
  6. all: subdirs
  7. subdirs:
  8. for n in $(SUBDIRS); do $(MAKE) -C $$n || exit 1; done
  9. clean:
  10. rm -f *.o *~
  11. for n in $(SUBDIRS); do $(MAKE) -C $$n clean; done
  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. ftp: clean
  19. -@mkdir $(FTPDIR)
  20. shar -V -x * | ../tools/sharfilter | (cd $(FTPDIR) && sh -)
  21. # cd $(FTPDIR); for n in `find . -name '_*' -print`; do 
  22. #    echo "replacing $$n"; mv $$n `echo $$n | sed s/_//`; done