Makefile
上传用户:caisangzi8
上传日期:2013-10-25
资源大小:15756k
文件大小:1k
源码类别:

DVD

开发平台:

C/C++

  1. #
  2. # Makefile
  3. # Other system related files
  4. #
  5. sinclude ../Makefile.sutl
  6. GOAL = libsys.a
  7. INCLUDE_DIR = -I. -I../ -I../h -I../setup -I../ir_vfd -I../emu/ -I../nav/ -I../dsp3 -I../fs 
  8. #
  9. # generic flags
  10. #
  11. SOURCES_HDD = 
  12. hdd_play.c 
  13. hdd_file.c 
  14. hdd_copy.c 
  15. hdd_gui.c 
  16. SOURCES_DRV = 
  17.        usbpll.c
  18. SOURCES_HW = 
  19. hwif.c hwif2.c 
  20. SOURCES = 
  21.    spif.c 
  22. emu.c 
  23. reset.c 
  24. sft.c 
  25. util.c
  26. memcfg.c 
  27. setvideo.c 
  28. sysmain.c 
  29. UartTxd.c
  30. sound_if.c
  31. polling.c
  32. sleep.c 
  33. riscint.c
  34. riscint1.c
  35. riscint2.c
  36. riscint3.c
  37. riscint4.c
  38. srv2.c
  39. macro.c 
  40. cardif.c
  41. 8202_usb_card_if.c
  42. jpegeffect_help.c
  43. fs_message_show.c
  44. $(SOURCES_HDD) 
  45. $(SOURCES_DRV) 
  46. $(SOURCES_HW)
  47. DEPENDS_C = 
  48. $(addprefix MIPS/,$(SOURCES:.c=.d))
  49. DEPENDS = $(DEPENDS_C)
  50. OBJS = $(DEPENDS:.d=.o)
  51. ASMS = $(DEPENDS:.d=.s))
  52. DISASMS = $(DEPENDS:.d=.dis))
  53. #
  54. # main target
  55. #
  56. all: $(GOAL)
  57. @$(ECHO) "$(GOAL) made"
  58. $(GOAL): MIPS $(OBJS) force
  59. @$(ECHO) "update library.."
  60. @$(XAR) -cr $(GOAL) $(OBJS) 
  61. #
  62. #
  63. #
  64. ifneq ($(MAKECMDGOALS),clean)
  65. sinclude $(DEPENDS)
  66. endif