From f41cfe8196909c6ace58a9dc7e5a7b4cb24c23ba Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Sat, 23 Sep 2023 11:44:50 -0400 Subject: add frequency plot --- gui/Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'gui/Makefile') diff --git a/gui/Makefile b/gui/Makefile index 0ff9c48..0a5494c 100644 --- a/gui/Makefile +++ b/gui/Makefile @@ -1,6 +1,8 @@ CXX = g++ CXXFILES := \ + kissfft/kiss_fft.c \ + kissfft/kiss_fftr.c \ source/serial/src/serial.cc \ source/imgui/backends/imgui_impl_sdl2.cpp \ source/imgui/backends/imgui_impl_opengl2.cpp \ @@ -13,7 +15,8 @@ CXXFILES := \ $(wildcard source/stmdsp/*.cpp) \ $(wildcard source/*.cpp) -CXXFLAGS := -std=c++20 -O2 \ +CXXFLAGS := -std=c++20 -Og -ggdb -g3 \ + -Ikissfft \ -Isource -Isource/imgui -Isource/stmdsp -Isource/serial/include \ -Isource/ImGuiColorTextEdit -Isource/ImGuiFileDialog \ $(shell sdl2-config --cflags) \ @@ -32,7 +35,7 @@ LDFLAGS = $(shell sdl2-config --libs) -lGL -lpthread OUTPUT := stmdspgui endif -OFILES := $(patsubst %.cc, %.o, $(patsubst %.cpp, %.o, $(CXXFILES))) +OFILES := $(patsubst %.c, %.o, $(patsubst %.cc, %.o, $(patsubst %.cpp, %.o, $(CXXFILES)))) all: $(OUTPUT) -- cgit v1.2.3