Makefile
上传用户:luoyougen
上传日期:2008-05-12
资源大小:23136k
文件大小:1k
源码类别:

VxWorks

开发平台:

C/C++

  1. # Makefile - makefile for building demos
  2. #
  3. # modification history
  4. # --------------------
  5. # 01e,02dec97,jmp  added synopsis rules to avoid top level synopsis build
  6. #                  failure.
  7. # 01d,20feb97,jank use $(MAKE) -C color intead of (cd color; ...)
  8. # 01c,06nov96,yp   added TGT_DIR support, brought default to top
  9. # 01b,04nov96,p_m  added man rule to avoid top leval man build to stop.
  10. # 01a,18jun96,yp   created from 01c of MakeSkel
  11. #
  12. # DESCRIPTION
  13. # This file contains the makefile rules for building the demo objects
  14. #
  15. #*/
  16. TGT_DIR= $(WIND_BASE)/target
  17.  
  18. CPU=MC68020
  19. TOOL=gnu
  20. default:
  21. $(MAKE) -C color CPU=$(CPU) TOOL=$(TOOL) TGT_DIR=$(TGT_DIR)
  22.  
  23. rclean:
  24. $(MAKE) -C color CPU=$(CPU) TOOL=$(TOOL) TGT_DIR=$(TGT_DIR) clean
  25.  
  26. man:
  27. synopsis:
  28. clean_synopsis:
  29. release : default