init + building
This commit is contained in:
commit
3e9b443b60
8 changed files with 127 additions and 0 deletions
34
Makefile
Normal file
34
Makefile
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
#!/usr/bin/make -f
|
||||
# Makefile for DISTRHO Plugins #
|
||||
# ------------------------------ #
|
||||
|
||||
# Define your plugins here as space-separated names
|
||||
PLUGINS = SquidgeDistortion
|
||||
|
||||
# --------------------------------------------------------------
|
||||
|
||||
dgl:
|
||||
ifeq ($(HAVE_OPENGL),true)
|
||||
$(MAKE) -C dpf/dgl opengl
|
||||
endif
|
||||
|
||||
# Build all plugins in the PLUGINS list
|
||||
plugins: dgl
|
||||
@for plugin in $(PLUGINS); do \
|
||||
echo "Building $$plugin..."; \
|
||||
$(MAKE) all -C plugins/$$plugin || exit 1; \
|
||||
done
|
||||
|
||||
# --------------------------------------------------------------
|
||||
|
||||
clean:
|
||||
$(MAKE) clean -C dpf/dgl
|
||||
@for plugin in $(PLUGINS); do \
|
||||
echo "Cleaning $$plugin..."; \
|
||||
$(MAKE) clean -C plugins/$$plugin || true; \
|
||||
done
|
||||
rm -rf bin build
|
||||
|
||||
# --------------------------------------------------------------
|
||||
|
||||
.PHONY: dgl plugins clean
|
||||
Loading…
Add table
Add a link
Reference in a new issue