rules.library.common
上传用户:nvosite88
上传日期:2007-01-17
资源大小:4983k
文件大小:1k
源码类别:

VxWorks

开发平台:

C/C++

  1. # rules.library.common - vxcom/vxdcom build rules for all targets
  2. #
  3. # modification history
  4. # --------------------
  5. # 01a,17oct,dbs  written
  6. #
  7. # NOTES:- this rules file requires the setting of a number of Make
  8. # variables either on the command line or via some target-specific
  9. # 'defs' file.
  10. #
  11. # Those variables are as follows:-
  12. #
  13. # VXDCOM_BUILD_HOST : either t2, t3 or unix
  14. #
  15. # Plus, for each of VXCOM and VXDCOM:-
  16. #
  17. # VX?COM_BASE : root of Vx[D]COM tree
  18. # VX?COM_PUBLIC_H_DIR : where to put public IDL-derived headers
  19. # VX?COM_PRIVATE_H_DIR : where to put private IDL-derived headers
  20. # VX?COM_PS_DIR : where to put IDL-derived proxy/stub *_ps.cpp files
  21. # VX?COM_GUID_DIR : where to put IDL-derived GUID *_i.c files
  22. #
  23. # implicit rules for IDL compilation
  24. $(VXDCOM_PUBLIC_H_DIR)/%.h : %.idl
  25. widl -h $(VXDCOM_PUBLIC_H_DIR) -nops -noi $<
  26. $(VXCOM_PUBLIC_H_DIR)/%.h : %.idl
  27. widl -h $(VXCOM_PUBLIC_H_DIR) -nops -noi $<
  28. $(VXDCOM_PRIVATE_H_DIR)/%.h : %.idl
  29. widl -h $(VXDCOM_PUBLIC_H_DIR) -nops -noi $<
  30. $(VXCOM_PRIVATE_H_DIR)/%.h : %.idl
  31. widl -h $(VXCOM_PUBLIC_H_DIR) -nops -noi $<
  32. $(VXDCOM_PS_DIR)/%_ps.cpp : %.idl
  33. widl -ps $(VXDCOM_PS_DIR) -noh -noi $<
  34. $(VXCOM_PS_DIR)/%_ps.cpp : %.idl
  35. widl -ps $(VXCOM_PS_DIR) -noh -noi $<
  36. $(VXDCOM_GUID_DIR)/%_i.c : %.idl
  37. widl -i $(VXDCOM_GUID_DIR) -nops -noh $<
  38. $(VXCOM_GUID_DIR)/%_i.c : %.idl
  39. widl -i $(VXCOM_GUID_DIR) -nops -noh $<