Makefile 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. #
  2. # (C) Copyright 2003-2006
  3. # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  4. #
  5. # See file CREDITS for list of people who contributed to this
  6. # project.
  7. #
  8. # This program is free software; you can redistribute it and/or
  9. # modify it under the terms of the GNU General Public License as
  10. # published by the Free Software Foundation; either version 2 of
  11. # the License, or (at your option) any later version.
  12. #
  13. # This program is distributed in the hope that it will be useful,
  14. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. # GNU General Public License for more details.
  17. #
  18. # You should have received a copy of the GNU General Public License
  19. # along with this program; if not, write to the Free Software
  20. # Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  21. # MA 02111-1307 USA
  22. #
  23. # File: drivers/net/sk98lin/Makefile
  24. #
  25. # Makefile for the SysKonnect SK-98xx device driver.
  26. #
  27. include $(TOPDIR)/config.mk
  28. LIB := $(obj)libsk98lin.a
  29. COBJS-y += skge.o
  30. COBJS-y += skaddr.o
  31. COBJS-y += skgehwt.o
  32. COBJS-y += skgeinit.o
  33. COBJS-y += skgepnmi.o
  34. COBJS-y += skgesirq.o
  35. COBJS-y += ski2c.o
  36. COBJS-y += sklm80.o
  37. COBJS-y += skqueue.o
  38. COBJS-y += skrlmt.o
  39. COBJS-y += sktimer.o
  40. COBJS-y += skvpd.o
  41. COBJS-y += skxmac2.o
  42. COBJS-y += skcsum.o
  43. #COBJS-y += skproc.o
  44. COBJS-y += uboot_skb.o
  45. COBJS-y += uboot_drv.o
  46. COBJS := $(COBJS-y)
  47. SRCS := $(COBJS:.o=.c)
  48. OBJS := $(addprefix $(obj),$(COBJS))
  49. # DBGDEF = \
  50. # -DDEBUG
  51. ifdef DEBUG
  52. DBGDEF += \
  53. -DSK_DEBUG_CHKMOD=0x00000000L \
  54. -DSK_DEBUG_CHKCAT=0x00000000L
  55. endif
  56. # **** possible debug modules for SK_DEBUG_CHKMOD *****************
  57. # SK_DBGMOD_MERR 0x00000001L /* general module error indication */
  58. # SK_DBGMOD_HWM 0x00000002L /* Hardware init module */
  59. # SK_DBGMOD_RLMT 0x00000004L /* RLMT module */
  60. # SK_DBGMOD_VPD 0x00000008L /* VPD module */
  61. # SK_DBGMOD_I2C 0x00000010L /* I2C module */
  62. # SK_DBGMOD_PNMI 0x00000020L /* PNMI module */
  63. # SK_DBGMOD_CSUM 0x00000040L /* CSUM module */
  64. # SK_DBGMOD_ADDR 0x00000080L /* ADDR module */
  65. # SK_DBGMOD_DRV 0x00010000L /* DRV module */
  66. # **** possible debug categories for SK_DEBUG_CHKCAT **************
  67. # *** common modules ***
  68. # SK_DBGCAT_INIT 0x00000001L module/driver initialization
  69. # SK_DBGCAT_CTRL 0x00000002L controlling: add/rmv MCA/MAC and other controls (IOCTL)
  70. # SK_DBGCAT_ERR 0x00000004L error handling paths
  71. # SK_DBGCAT_TX 0x00000008L transmit path
  72. # SK_DBGCAT_RX 0x00000010L receive path
  73. # SK_DBGCAT_IRQ 0x00000020L general IRQ handling
  74. # SK_DBGCAT_QUEUE 0x00000040L any queue management
  75. # SK_DBGCAT_DUMP 0x00000080L large data output e.g. hex dump
  76. # SK_DBGCAT_FATAL 0x00000100L large data output e.g. hex dump
  77. # *** driver (file skge.c) ***
  78. # SK_DBGCAT_DRV_ENTRY 0x00010000 entry points
  79. # SK_DBGCAT_DRV_??? 0x00020000 not used
  80. # SK_DBGCAT_DRV_MCA 0x00040000 multicast
  81. # SK_DBGCAT_DRV_TX_PROGRESS 0x00080000 tx path
  82. # SK_DBGCAT_DRV_RX_PROGRESS 0x00100000 rx path
  83. # SK_DBGCAT_DRV_PROGRESS 0x00200000 general runtime
  84. # SK_DBGCAT_DRV_??? 0x00400000 not used
  85. # SK_DBGCAT_DRV_PROM 0x00800000 promiscuous mode
  86. # SK_DBGCAT_DRV_TX_FRAME 0x01000000 display tx frames
  87. # SK_DBGCAT_DRV_ERROR 0x02000000 error conditions
  88. # SK_DBGCAT_DRV_INT_SRC 0x04000000 interrupts sources
  89. # SK_DBGCAT_DRV_EVENT 0x08000000 driver events
  90. EXTRA_CFLAGS += -I. -DSK_USE_CSUM $(DBGDEF)
  91. CFLAGS += $(EXTRA_CFLAGS)
  92. HOST_CFLAGS += $(EXTRA_CFLAGS)
  93. all: $(LIB)
  94. $(LIB): $(obj).depend $(OBJS)
  95. $(AR) $(ARFLAGS) $@ $(OBJS)
  96. #########################################################################
  97. # defines $(obj).depend target
  98. include $(SRCTREE)/rules.mk
  99. sinclude $(obj).depend
  100. #########################################################################