This commit is contained in:
Dejvino
2026-02-27 19:55:28 +01:00
parent 34d15a7f1c
commit 2b6e1d2c6b
7 changed files with 337 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
# Compiler and flags
CXX = g++
CXXFLAGS = -std=c++17 -Wall -Wextra -I. $(shell sdl2-config --cflags)
LDFLAGS = -ldl -lm -lpthread $(shell sdl2-config --libs)
# Source files
SRCS = main.cpp synth_engine.cpp
# Output binary
TARGET = noicesynth_linux
all: $(TARGET)
$(TARGET): $(SRCS)
$(CXX) $(CXXFLAGS) -o $(TARGET) $(SRCS) $(LDFLAGS)
clean:
rm -f $(TARGET)