Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cross-platform build #1

Merged
merged 5 commits into from
May 17, 2022
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
build/
build-tmp/
eval/
*.bak
doc/sassy.html
Expand All @@ -9,3 +10,6 @@ audioinit/x64/
3rdpartytools/bin2coff.exe
akwf/akwf_sorted.obj
akwf/akwf_sorted.raw
/sassy
/sassy.exe
/sassy.ini
91 changes: 91 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
#!/usr/bin/make -f
# Makefile for FluidPlug #
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The what? =)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lol copy&paste silliness, you didn't see anything 🌈

# ---------------------- #
# Created by falkTX
#

include Makefile.mk

DESTDIR =
PREFIX = /usr

# ---------------------------------------------------------------------------------------------------------------------

BUILD_CXX_FLAGS += -Isrc/fftreal
BUILD_CXX_FLAGS += -Isrc/libsamplerate
BUILD_CXX_FLAGS += -Isrc/ocornut_imgui
BUILD_CXX_FLAGS += -Isrc/ocornut_imgui/backends
BUILD_CXX_FLAGS += -Isrc/rtmidi
BUILD_CXX_FLAGS += -Isrc/tinyfiledialogs

BUILD_CXX_FLAGS += -Wno-shadow
BUILD_CXX_FLAGS += -Wno-unused-parameter

BUILD_CXX_FLAGS += $(shell pkg-config --cflags sdl2) -pthread
LINK_FLAGS += $(shell pkg-config --libs sdl2) -pthread

ifeq ($(MACOS),true)
BUILD_CXX_FLAGS += -D__MACOSX_CORE__
LINK_FLAGS += -framework CoreMIDI
else ifeq ($(WINDOWS),true)
BUILD_CXX_FLAGS += -D__WINDOWS_MM__
LINK_FLAGS += -lwinmm
else
BUILD_CXX_FLAGS += -D__LINUX_ALSA__
BUILD_CXX_FLAGS += $(shell pkg-config --cflags alsa gl) -pthread
LINK_FLAGS += $(shell pkg-config --libs alsa gl) -pthread
endif

# ---------------------------------------------------------------------------------------------------------------------

FILES = src/sassy.cpp
FILES += src/akwfdata.c
FILES += src/well512.cpp
FILES += src/ayumi/ayumi.c
FILES += src/klatt/darray.cpp
FILES += src/klatt/klatt.cpp
FILES += src/klatt/resonator.cpp
FILES += src/klatt/tts.cpp
FILES += src/padsynth/PADsynth.cpp
FILES += src/rtmidi/RtMidi.cpp
FILES += src/stb/stb_vorbis.c
FILES += src/tinyfiledialogs/tinyfiledialogs.c
FILES += $(wildcard src/eval_impl_*.cpp)
FILES += $(wildcard src/sassy_*.cpp)
FILES += $(wildcard src/libsamplerate/*.c)
FILES += $(wildcard src/ocornut_imgui/*.cpp)
FILES += $(wildcard src/ocornut_imgui/backends/*.cpp)

OBJS = $(FILES:%=build-tmp/%.o)

# ---------------------------------------------------------------------------------------------------------------------

all: sassy$(APP_EXT)

clean:
rm -f $(OBJS)
rm -rf build-tmp

# ---------------------------------------------------------------------------------------------------------------------

sassy$(APP_EXT): $(OBJS)
@echo "Linking $@"
$(SILENT)$(CXX) $^ $(LINK_FLAGS) -o $@

# ---------------------------------------------------------------------------------------------------------------------

build-tmp/%.c.o: %.c
-@mkdir -p $(shell dirname $@)
@echo "Compiling $<"
$(SILENT)$(CC) $< $(BUILD_C_FLAGS) -c -o $@

build-tmp/%.cpp.o: %.cpp
-@mkdir -p $(shell dirname $@)
@echo "Compiling $<"
$(SILENT)$(CXX) $< $(BUILD_CXX_FLAGS) -c -o $@

# ---------------------------------------------------------------------------------------------------------------------

-include $(OBJS:%.o=%.d)

# ---------------------------------------------------------------------------------------------------------------------
Loading