mirror of
https://github.com/plappermaul/realtek-doc.git
synced 2025-12-10 07:44:41 +01:00
23 lines
337 B
Text
23 lines
337 B
Text
#
|
|
# Copyright (C) 2016 Realtek Semiconductor Corp.
|
|
#
|
|
# Makefile for PHY
|
|
#
|
|
|
|
|
|
#
|
|
# include configuration file
|
|
#
|
|
ifeq ($(SDK_CONFIG), $(wildcard $(SDK_CONFIG)))
|
|
include $(SDK_CONFIG)
|
|
endif
|
|
|
|
CUST5_PHY_DIR :=
|
|
CUST5_PHY_OBJ :=
|
|
|
|
ifeq ($(CONFIG_SDK_PHY_CUST5),y)
|
|
CUST_PHY += $(CUST5_PHY_OBJ)
|
|
CUST_PHY_CFLAGS += -I$(CUST5_PHY_DIR)
|
|
endif
|
|
|
|
|