mirror of
https://github.com/plappermaul/realtek-doc.git
synced 2025-12-10 07:44:41 +01:00
21 lines
463 B
Text
21 lines
463 B
Text
#
|
|
# Copyright (C) 2009 Realtek Semiconductor Corp.
|
|
#
|
|
# Makefile for SDK Linux Net Switch Directory
|
|
#
|
|
|
|
ifeq ($(SDK_CONFIG), $(wildcard $(SDK_CONFIG)))
|
|
include $(SDK_CONFIG)
|
|
endif
|
|
|
|
EXTRA_CFLAGS += -Wall -Werror -Wuninitialized -Wstrict-prototypes
|
|
|
|
ifeq ($(CONFIG_SDK_DRIVER_MX),m)
|
|
EXTRA_CFLAGS += -mlong-calls -fno-pic
|
|
endif
|
|
|
|
ifneq ($(CONFIG_SDK_LINKED_KMOD),y)
|
|
ifeq ($(CONFIG_SDK_KERNEL_LINUX_KERNEL_MODE),y)
|
|
obj-$(CONFIG_SDK_DRIVER_RTDRV) += rtdrv/
|
|
endif
|
|
endif
|