mirror of
https://github.com/plappermaul/realtek-doc.git
synced 2025-12-10 07:44:41 +01:00
it even contains the modern RTL8224 sources Signed-off-by: Markus Stockhausen <markus.stockhausen@gmx.de>
28 lines
581 B
Text
28 lines
581 B
Text
#
|
|
# Copyright (C) 2019 Realtek Semiconductor Corp.
|
|
#
|
|
# Makefile for SDK - arch-B lib
|
|
#
|
|
|
|
|
|
SDK_TOP_DIR := ../../..
|
|
|
|
#
|
|
# include makefile
|
|
#
|
|
|
|
include $(SDK_TOP_DIR)/sdk/build/Makefile.rtcore
|
|
include $(SDK_TOP_DIR)/sdk/build/Makefile.rtk
|
|
include $(SDK_TOP_DIR)/sdk/build/Makefile.phy
|
|
include $(SDK_TOP_DIR)/sdk/build/Makefile.diag
|
|
include $(SDK_TOP_DIR)/sdk/build/Makefile.rtnic
|
|
|
|
|
|
#
|
|
# object
|
|
#
|
|
RTK_ALL_OBJ := $(addprefix sdk/src/,$(RTK_ALL_OBJ))
|
|
PHY_OBJ := $(addprefix sdk/src/,$(PHY_OBJ))
|
|
|
|
arch_B_lib := $(RTCORE_OBJ) $(RTK_ALL_OBJ) $(PHY_OBJ) $(NIC_ALL_OBJ) $(DIAG_OBJ)
|
|
|