- fiddling with variable export
- cleaned up git-svn-id: http://moon:8086/svn/software/trunk/projects/mpsk_rx_gui@916 b431acfa-c32f-4a4a-93f1-934dc6c82436
This commit is contained in:
@@ -1,6 +1,8 @@
|
|||||||
include ./config.mk
|
include ./config.mk
|
||||||
|
export
|
||||||
|
|
||||||
CXXFLAGS += -std=c++11
|
CXXFLAGS_release := -O3
|
||||||
|
CFLAGS_release := -O3
|
||||||
TARGET_ARCH := -march=native
|
TARGET_ARCH := -march=native
|
||||||
|
|
||||||
LIBDIR := -L$(LIBSRC_PATH)/fir -L$(LIBSRC_PATH)/crc -L$(LIBSRC_PATH)/radio
|
LIBDIR := -L$(LIBSRC_PATH)/fir -L$(LIBSRC_PATH)/crc -L$(LIBSRC_PATH)/radio
|
||||||
@@ -11,8 +13,8 @@ DEFINES += -DPROCESSOR_BUFFER_USE_EXCEPTIONS
|
|||||||
all: app
|
all: app
|
||||||
app: objects link
|
app: objects link
|
||||||
objects:
|
objects:
|
||||||
@$(MAKE) -C JuceLibraryCode BUILD_DIR=$(BUILD_DIR)
|
@$(MAKE) -C JuceLibraryCode
|
||||||
@$(MAKE) -C Source BUILD_DIR=$(BUILD_DIR)
|
@$(MAKE) -C Source
|
||||||
@$(MAKE) -C Radio BUILD_DIR=$(BUILD_DIR)
|
@$(MAKE) -C Radio
|
||||||
|
|
||||||
include $(MAKE_HOME)/compile.mk
|
include $(MAKE_HOME)/compile.mk
|
||||||
|
|||||||
+9
-10
@@ -2,17 +2,16 @@ include ./config.mk
|
|||||||
|
|
||||||
NAME := Source
|
NAME := Source
|
||||||
|
|
||||||
SOURCES := GraphComponent.cpp
|
CXX_SRCS := GraphComponent.cpp
|
||||||
SOURCES += LogComponent.cpp
|
CXX_SRCS += LogComponent.cpp
|
||||||
SOURCES += Receiver.cpp
|
CXX_SRCS += Receiver.cpp
|
||||||
SOURCES += Transmitter.cpp
|
CXX_SRCS += Transmitter.cpp
|
||||||
SOURCES += ControlComponent.cpp
|
CXX_SRCS += ControlComponent.cpp
|
||||||
SOURCES += IQPoint.cpp
|
CXX_SRCS += IQPoint.cpp
|
||||||
SOURCES += IQPlaneComponent.cpp
|
CXX_SRCS += IQPlaneComponent.cpp
|
||||||
SOURCES += MainComponent.cpp
|
CXX_SRCS += MainComponent.cpp
|
||||||
SOURCES += Main.cpp
|
CXX_SRCS += Main.cpp
|
||||||
|
|
||||||
CXX_SRCS += $(SOURCES)
|
|
||||||
INCLUDES += -I . -I $(realpath ../JuceLibraryCode) -I $(JUCE_PATH) -I $(LIBSRC_PATH) -I $(EIGEN_PATH)
|
INCLUDES += -I . -I $(realpath ../JuceLibraryCode) -I $(JUCE_PATH) -I $(LIBSRC_PATH) -I $(EIGEN_PATH)
|
||||||
|
|
||||||
include $(MAKE_HOME)/compile.mk
|
include $(MAKE_HOME)/compile.mk
|
||||||
|
|||||||
Reference in New Issue
Block a user