mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
25 lines
574 B
Makefile
25 lines
574 B
Makefile
# Makefile autogenerated by premake
|
|
# Don't edit this file! Instead edit `premake.lua` then rerun `make`
|
|
# Options:
|
|
# CONFIG=[Debug|Release]
|
|
|
|
ifndef CONFIG
|
|
CONFIG=Debug
|
|
endif
|
|
|
|
export CONFIG
|
|
|
|
.PHONY: all clean JuceAudioPluginHost
|
|
|
|
all: JuceAudioPluginHost
|
|
|
|
Makefile: premake.lua
|
|
@echo ==== Regenerating Makefiles ====
|
|
@premake --file $^ --cc gcc --target gnu
|
|
|
|
JuceAudioPluginHost:
|
|
@echo ==== Building JuceAudioPluginHost ====
|
|
@$(MAKE) --no-print-directory -C . -f JuceAudioPluginHost.make
|
|
|
|
clean:
|
|
@$(MAKE) --no-print-directory -C . -f JuceAudioPluginHost.make clean
|