-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Last commit before branching to restructure
- Loading branch information
Showing
68 changed files
with
11,172 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,178 @@ | ||
# Automatically generated makefile, created by the Projucer | ||
# Don't edit this file! Your changes will be overwritten when you re-save the Projucer project! | ||
|
||
# (this disables dependency generation if multiple architectures are set) | ||
DEPFLAGS := $(if $(word 2, $(TARGET_ARCH)), , -MMD) | ||
|
||
ifndef CONFIG | ||
CONFIG=Debug | ||
endif | ||
|
||
ifeq ($(CONFIG),Debug) | ||
BINDIR := build | ||
LIBDIR := build | ||
OBJDIR := build/intermediate/Debug | ||
OUTDIR := /home/raffael/.vst/ | ||
|
||
ifeq ($(TARGET_ARCH),) | ||
TARGET_ARCH := -march=native | ||
endif | ||
|
||
CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DDEBUG=1 -D_DEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.2 -DJUCE_APP_VERSION_HEX=0x10002 -I /usr/include -I /usr/include/freetype2 -I ~/SDKs/VST3\ SDK -I ../../JuceLibraryCode -I ../../../../lib/JUCE/modules | ||
CFLAGS += $(CPPFLAGS) $(TARGET_ARCH) -g -ggdb -fPIC -O0 | ||
CXXFLAGS += $(CFLAGS) -std=c++11 | ||
LDFLAGS += $(TARGET_ARCH) -L$(BINDIR) -L$(LIBDIR) -Wl,--no-undefined -shared -L/usr/X11R6/lib/ -lGL -lX11 -lXext -lXinerama -lasound -ldl -lfreetype -lpthread -lrt | ||
|
||
TARGET := GRNLR.so | ||
BLDCMD = $(CXX) -o $(OUTDIR)/$(TARGET) $(OBJECTS) $(LDFLAGS) $(RESOURCES) $(TARGET_ARCH) | ||
CLEANCMD = rm -rf $(OUTDIR)/$(TARGET) $(OBJDIR) | ||
endif | ||
|
||
ifeq ($(CONFIG),Release) | ||
BINDIR := build | ||
LIBDIR := build | ||
OBJDIR := build/intermediate/Release | ||
OUTDIR := /home/raffael/.vst/ | ||
|
||
ifeq ($(TARGET_ARCH),) | ||
TARGET_ARCH := -march=native | ||
endif | ||
|
||
CPPFLAGS := $(DEPFLAGS) -DLINUX=1 -DNDEBUG=1 -DJUCER_LINUX_MAKE_6D53C8B4=1 -DJUCE_APP_VERSION=1.0.2 -DJUCE_APP_VERSION_HEX=0x10002 -I /usr/include -I /usr/include/freetype2 -I ~/SDKs/VST3\ SDK -I ../../JuceLibraryCode -I ../../../../lib/JUCE/modules | ||
CFLAGS += $(CPPFLAGS) $(TARGET_ARCH) -fPIC -O3 | ||
CXXFLAGS += $(CFLAGS) -std=c++11 | ||
LDFLAGS += $(TARGET_ARCH) -L$(BINDIR) -L$(LIBDIR) -Wl,--no-undefined -shared -fvisibility=hidden -L/usr/X11R6/lib/ -lGL -lX11 -lXext -lXinerama -lasound -ldl -lfreetype -lpthread -lrt | ||
|
||
TARGET := GRNLR.so | ||
BLDCMD = $(CXX) -o $(OUTDIR)/$(TARGET) $(OBJECTS) $(LDFLAGS) $(RESOURCES) $(TARGET_ARCH) | ||
CLEANCMD = rm -rf $(OUTDIR)/$(TARGET) $(OBJDIR) | ||
endif | ||
|
||
OBJECTS := \ | ||
$(OBJDIR)/PluginProcessor_a059e380.o \ | ||
$(OBJDIR)/PluginEditor_94d4fb09.o \ | ||
$(OBJDIR)/juce_audio_basics_6b797ca1.o \ | ||
$(OBJDIR)/juce_audio_devices_a742c38b.o \ | ||
$(OBJDIR)/juce_audio_formats_5a29c68a.o \ | ||
$(OBJDIR)/juce_audio_plugin_client_utils_35fbf7.o \ | ||
$(OBJDIR)/juce_audio_plugin_client_VST2_fd137df.o \ | ||
$(OBJDIR)/juce_audio_processors_dea3173d.o \ | ||
$(OBJDIR)/juce_audio_utils_c7eb679f.o \ | ||
$(OBJDIR)/juce_core_75b14332.o \ | ||
$(OBJDIR)/juce_cryptography_6de2ebff.o \ | ||
$(OBJDIR)/juce_data_structures_72d3da2c.o \ | ||
$(OBJDIR)/juce_events_d2be882c.o \ | ||
$(OBJDIR)/juce_graphics_9c18891e.o \ | ||
$(OBJDIR)/juce_gui_basics_8a6da59c.o \ | ||
$(OBJDIR)/juce_gui_extra_4a026f23.o \ | ||
$(OBJDIR)/juce_opengl_cd70b4c2.o \ | ||
$(OBJDIR)/juce_video_f128c512.o \ | ||
|
||
.PHONY: clean | ||
|
||
$(OUTDIR)/$(TARGET): $(OBJECTS) $(RESOURCES) | ||
@echo Linking GRNLR | ||
-@mkdir -p $(BINDIR) | ||
-@mkdir -p $(LIBDIR) | ||
-@mkdir -p $(OUTDIR) | ||
@$(BLDCMD) | ||
|
||
clean: | ||
@echo Cleaning GRNLR | ||
@$(CLEANCMD) | ||
|
||
strip: | ||
@echo Stripping GRNLR | ||
-@strip --strip-unneeded $(OUTDIR)/$(TARGET) | ||
|
||
$(OBJDIR)/PluginProcessor_a059e380.o: ../../Source/PluginProcessor.cpp | ||
-@mkdir -p $(OBJDIR) | ||
@echo "Compiling PluginProcessor.cpp" | ||
@$(CXX) $(CXXFLAGS) -o "$@" -c "$<" | ||
|
||
$(OBJDIR)/PluginEditor_94d4fb09.o: ../../Source/PluginEditor.cpp | ||
-@mkdir -p $(OBJDIR) | ||
@echo "Compiling PluginEditor.cpp" | ||
@$(CXX) $(CXXFLAGS) -o "$@" -c "$<" | ||
|
||
$(OBJDIR)/juce_audio_basics_6b797ca1.o: ../../JuceLibraryCode/juce_audio_basics.cpp | ||
-@mkdir -p $(OBJDIR) | ||
@echo "Compiling juce_audio_basics.cpp" | ||
@$(CXX) $(CXXFLAGS) -o "$@" -c "$<" | ||
|
||
$(OBJDIR)/juce_audio_devices_a742c38b.o: ../../JuceLibraryCode/juce_audio_devices.cpp | ||
-@mkdir -p $(OBJDIR) | ||
@echo "Compiling juce_audio_devices.cpp" | ||
@$(CXX) $(CXXFLAGS) -o "$@" -c "$<" | ||
|
||
$(OBJDIR)/juce_audio_formats_5a29c68a.o: ../../JuceLibraryCode/juce_audio_formats.cpp | ||
-@mkdir -p $(OBJDIR) | ||
@echo "Compiling juce_audio_formats.cpp" | ||
@$(CXX) $(CXXFLAGS) -o "$@" -c "$<" | ||
|
||
$(OBJDIR)/juce_audio_plugin_client_utils_35fbf7.o: ../../JuceLibraryCode/juce_audio_plugin_client_utils.cpp | ||
-@mkdir -p $(OBJDIR) | ||
@echo "Compiling juce_audio_plugin_client_utils.cpp" | ||
@$(CXX) $(CXXFLAGS) -o "$@" -c "$<" | ||
|
||
$(OBJDIR)/juce_audio_plugin_client_VST2_fd137df.o: ../../JuceLibraryCode/juce_audio_plugin_client_VST2.cpp | ||
-@mkdir -p $(OBJDIR) | ||
@echo "Compiling juce_audio_plugin_client_VST2.cpp" | ||
@$(CXX) $(CXXFLAGS) -o "$@" -c "$<" | ||
|
||
$(OBJDIR)/juce_audio_processors_dea3173d.o: ../../JuceLibraryCode/juce_audio_processors.cpp | ||
-@mkdir -p $(OBJDIR) | ||
@echo "Compiling juce_audio_processors.cpp" | ||
@$(CXX) $(CXXFLAGS) -o "$@" -c "$<" | ||
|
||
$(OBJDIR)/juce_audio_utils_c7eb679f.o: ../../JuceLibraryCode/juce_audio_utils.cpp | ||
-@mkdir -p $(OBJDIR) | ||
@echo "Compiling juce_audio_utils.cpp" | ||
@$(CXX) $(CXXFLAGS) -o "$@" -c "$<" | ||
|
||
$(OBJDIR)/juce_core_75b14332.o: ../../JuceLibraryCode/juce_core.cpp | ||
-@mkdir -p $(OBJDIR) | ||
@echo "Compiling juce_core.cpp" | ||
@$(CXX) $(CXXFLAGS) -o "$@" -c "$<" | ||
|
||
$(OBJDIR)/juce_cryptography_6de2ebff.o: ../../JuceLibraryCode/juce_cryptography.cpp | ||
-@mkdir -p $(OBJDIR) | ||
@echo "Compiling juce_cryptography.cpp" | ||
@$(CXX) $(CXXFLAGS) -o "$@" -c "$<" | ||
|
||
$(OBJDIR)/juce_data_structures_72d3da2c.o: ../../JuceLibraryCode/juce_data_structures.cpp | ||
-@mkdir -p $(OBJDIR) | ||
@echo "Compiling juce_data_structures.cpp" | ||
@$(CXX) $(CXXFLAGS) -o "$@" -c "$<" | ||
|
||
$(OBJDIR)/juce_events_d2be882c.o: ../../JuceLibraryCode/juce_events.cpp | ||
-@mkdir -p $(OBJDIR) | ||
@echo "Compiling juce_events.cpp" | ||
@$(CXX) $(CXXFLAGS) -o "$@" -c "$<" | ||
|
||
$(OBJDIR)/juce_graphics_9c18891e.o: ../../JuceLibraryCode/juce_graphics.cpp | ||
-@mkdir -p $(OBJDIR) | ||
@echo "Compiling juce_graphics.cpp" | ||
@$(CXX) $(CXXFLAGS) -o "$@" -c "$<" | ||
|
||
$(OBJDIR)/juce_gui_basics_8a6da59c.o: ../../JuceLibraryCode/juce_gui_basics.cpp | ||
-@mkdir -p $(OBJDIR) | ||
@echo "Compiling juce_gui_basics.cpp" | ||
@$(CXX) $(CXXFLAGS) -o "$@" -c "$<" | ||
|
||
$(OBJDIR)/juce_gui_extra_4a026f23.o: ../../JuceLibraryCode/juce_gui_extra.cpp | ||
-@mkdir -p $(OBJDIR) | ||
@echo "Compiling juce_gui_extra.cpp" | ||
@$(CXX) $(CXXFLAGS) -o "$@" -c "$<" | ||
|
||
$(OBJDIR)/juce_opengl_cd70b4c2.o: ../../JuceLibraryCode/juce_opengl.cpp | ||
-@mkdir -p $(OBJDIR) | ||
@echo "Compiling juce_opengl.cpp" | ||
@$(CXX) $(CXXFLAGS) -o "$@" -c "$<" | ||
|
||
$(OBJDIR)/juce_video_f128c512.o: ../../JuceLibraryCode/juce_video.cpp | ||
-@mkdir -p $(OBJDIR) | ||
@echo "Compiling juce_video.cpp" | ||
@$(CXX) $(CXXFLAGS) -o "$@" -c "$<" | ||
|
||
-include $(OBJECTS:%.o=%.d) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"><plist version="1.0"><dict> <key>com.apple.security.app-sandbox</key> <true/></dict></plist> |
Oops, something went wrong.