From 9c165c528fc20c094b70396651211587bf9ca2a2 Mon Sep 17 00:00:00 2001 From: Jens Ahrensfeld Date: Wed, 1 Jun 2022 17:30:22 +0000 Subject: [PATCH] - fixed build dir git-svn-id: http://moon:8086/svn/software/trunk/projects/mpsk_rx_gui@920 b431acfa-c32f-4a4a-93f1-934dc6c82436 --- Makefile | 2 +- config.mk | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 688dbfd..254bcfa 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ all: app app: objects link objects: @$(MAKE) -C JuceLibraryCode - @$(MAKE) -C Source BUILD_DIR=${BUILD_DIR}/Source + @$(MAKE) -C Source @$(MAKE) -C Radio include $(MAKE_HOME)/compile.mk diff --git a/config.mk b/config.mk index 049a71e..84fffc4 100644 --- a/config.mk +++ b/config.mk @@ -1,7 +1,7 @@ MAKE_HOME ?= /home/jens/work/software/make CONFIG ?= debug TARGET ?= mpsk_receiver -BUILD_DIR ?= ./build/${CONFIG} +BUILD_DIR ?= $(shell pwd)/build/${CONFIG} MAKEFLAGS += --no-print-directory LIBSRC_PATH ?= $(realpath ../../libsrc)