Makefile
上传用户:minyiyu
上传日期:2018-12-24
资源大小:864k
文件大小:1k
源码类别:

Telnet服务器

开发平台:

Unix_Linux

  1. #
  2. #   lib/Makefile
  3. #
  4. # $Id: Makefile,v 1.1 2000/01/15 01:45:24 edwardc Exp $
  5. #
  6. #############################################################
  7. ####   Setup the following site-specific information     ####
  8. #############################################################
  9. DIRS += libBBS
  10. #############################################################
  11. ###        You needn't modify the following stuff      ######
  12. #############################################################
  13. all: rmlib
  14. @for x in $(DIRS); 
  15. do 
  16. echo "  --> lib/$$x"; 
  17. (cd $$x; make all CC=$(CC); cd .. ); 
  18. echo "  <-- lib/$$x"; 
  19. echo " "; 
  20. done
  21. rmlib:
  22. -rm -rf *.a
  23. clean: /tmp
  24. @echo "== cleanning junks, object files, and binaries .. =="
  25. -rm -fr *~ *.o *.BAK
  26. @for x in $(DIRS); 
  27. do 
  28. echo "  --> lib/$$x"; 
  29. (cd $$x; make clean ; cd .. ); 
  30. echo "  <-- lib/$$x"; 
  31. echo " "; 
  32. done
  33. cleanall: /tmp
  34. @echo "== cleanning junks, object files, and binaries .. =="
  35. -rm -fr *~ *.o *.BAK
  36. @for x in $(DIRS); 
  37. do 
  38. echo "  --> lib/$$x"; 
  39. (cd $$x; make cleanall ; cd .. ); 
  40. echo "  <-- lib/$$x"; 
  41. echo " "; 
  42. done
  43. install:
  44. @echo --- lib: no install skip ---