Makefile.am
上传用户:awang829
上传日期:2019-07-14
资源大小:2356k
文件大小:1k
源码类别:

网络

开发平台:

Unix_Linux

  1. EXTRA_DIST = website img HACKING                             
  2.              tor-resolve.1 tor-gencert.1                     
  3.              tor-osx-dmg-creation.txt tor-rpm-creation.txt   
  4.              tor-win32-mingw-creation.txt
  5. man_MANS = tor.1 tor-resolve.1 tor-gencert.1
  6. SUBDIRS = design-paper spec
  7. DIST_SUBDIRS = design-paper spec
  8. website: ../../website/docs/
  9. rm -rf website
  10. mkdir website
  11. if test -d $(srcdir)/../../website ; then 
  12. cd $(srcdir)/../../website && $(MAKE); 
  13. fi
  14. if test -d $(srcdir)/../../website ; then 
  15. cp $(srcdir)/../../website/docs/tor-*.html.* 
  16. $(srcdir)/../../website/stylesheet.css website; 
  17. fi
  18. img: ../../website/img/
  19. rm -rf img
  20. mkdir img
  21. # if test -d $(srcdir)/../../website/img; then 
  22. # cp $(srcdir)/../../website/img/*.png 
  23. # $(srcdir)/../../website/img/*.jpg img; 
  24. # fi
  25. .PHONY: website img