Makefile
上传用户:zbbssh
上传日期:2007-01-08
资源大小:196k
文件大小:1k
源码类别:

CA认证

开发平台:

C/C++

  1. # pragma ident "@(#)Makefile 1.7 96/01/29 Sun Microsystems"
  2. #
  3. include ../Makefile.defs
  4. DIRS_SUNOS5 = lib hashcert utils
  5. DIRS_SUNOS4 = lib hashcert utils 
  6. DIR_X509:sh=
  7. (
  8. if [ -d x509cert ];
  9. then echo "x509cert";
  10. fi;
  11. )
  12. SUBDIRS = $(DIRS_SUNOS$(MAJOR_OS)) $(DIR_X509)
  13. all: $(SUBDIRS)
  14. $(SUBDIRS): Makefile
  15. @(cd $(@); echo "Building $(@)"; make)
  16. clean:
  17. @for comp in $(SUBDIRS); 
  18. do (cd $${comp}; echo "Cleaning $${comp}"; make clean); 
  19. done;
  20. @-$(SCCSCLEAN)
  21. cleanall:
  22. @for comp in $(SUBDIRS); 
  23. do 
  24. if [ -d $${comp} ]; 
  25. then 
  26. (cd $${comp}; echo "Cleaning all $${comp}"; make cleanall); 
  27. fi; 
  28. done;
  29. @-$(SCCSCLEAN)