diff options
author | Clyne Sullivan <clyne@clyne-lp.lan> | 2021-08-08 22:02:52 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@clyne-lp.lan> | 2021-08-08 22:02:52 -0400 |
commit | 707b24dd07236243269cf092728f85172e94e8a4 (patch) | |
tree | c136716a5fc9ed9cbf570e24f8f6ab715adc73a2 /Makefile |
initial commit
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e00f59e --- /dev/null +++ b/Makefile @@ -0,0 +1,35 @@ +CXXFILES := \ + source/serial/src/serial.cc \ + source/serial/src/impl/unix.cc \ + source/serial/src/impl/list_ports/list_ports_linux.cc \ + $(wildcard source/imgui/backends/*.cpp) \ + $(wildcard source/imgui/*.cpp) \ + $(wildcard source/stmdsp/*.cpp) \ + $(wildcard source/*.cpp) + +OFILES := $(patsubst %.cc, %.o, $(patsubst %.cpp, %.o, $(CXXFILES))) +OUTPUT := stmdspgui + +#CXXFLAGS := -std=c++20 -O2 \ +# -Isource -Isource/imgui -Isource/stmdsp -Isource/serial/include +CXXFLAGS := -std=c++20 -ggdb -O0 -g3 \ + -Isource -Isource/imgui -Isource/stmdsp -Isource/serial/include + +all: $(OUTPUT) + +$(OUTPUT): $(OFILES) + @echo " LD " $(OUTPUT) + @g++ $(OFILES) -o $(OUTPUT) -lSDL2 -lGL + +clean: + @echo " CLEAN" + @rm $(OFILES) $(OUTPUT) + +%.o: %.cpp + @echo " CXX " $< + @g++ $(CXXFLAGS) -c $< -o $@ + +%.o: %.cc + @echo " CXX " $< + g++ $(CXXFLAGS) -c $< -o $@ + |