17 lines
464 B
Makefile
17 lines
464 B
Makefile
##
|
|
# Common Makefile definitions.
|
|
# @version $Format:%h%d$
|
|
# Copyright (c) 2013-2017 Rambus Inc. All Rights Reserved.
|
|
#
|
|
#-------------------------------------------------------------------------------
|
|
|
|
# Find core library.
|
|
-include corepath.mk
|
|
|
|
ifeq '$(CORE_PATH)' ''
|
|
CORE_PATH:=$(patsubst %/,%/core,$(dir $(lastword $(MAKEFILE_LIST))))
|
|
endif
|
|
|
|
# The common.mk is replaced by equivalent functionality within core.
|
|
include $(CORE_PATH)/makefiles/detect-and-rules.mk
|