10 lines
289 B
Makefile
10 lines
289 B
Makefile
MAKE_HOME ?= $(realpath ./submodules/tools/make)
|
|
CONFIG ?= debug
|
|
TARGET ?= mpsk_receiver
|
|
BUILD_DIR ?= $(shell pwd)/build/${CONFIG}
|
|
|
|
LIBSRC_PATH ?= $(realpath ./submodules/libsrc)
|
|
JUCE_PATH ?= $(realpath ./submodules/libext/JUCE)
|
|
BLAZE_PATH ?= $(realpath ./submodules/libext/blaze)
|
|
|
|
export
|