mirror of
https://github.com/plappermaul/realtek-doc.git
synced 2025-12-10 07:44:41 +01:00
16 lines
323 B
Makefile
16 lines
323 B
Makefile
#
|
|
# Copyright (C) 2009 Realtek Semiconductor Corp.
|
|
#
|
|
# Makefile for SDK Unit Test Directory
|
|
#
|
|
|
|
ifeq ($(SDK_CONFIG), $(wildcard $(SDK_CONFIG)))
|
|
include $(SDK_CONFIG)
|
|
endif
|
|
|
|
ifeq ($(CONFIG_SDK_KERNEL_LINUX_KERNEL_MODE),y)
|
|
include $(SDK_BUILD)/Makefile.linux.kernel.ut
|
|
else
|
|
include $(SDK_BUILD)/Makefile.linux.user.ut
|
|
endif
|
|
|