mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
25 lines
489 B
Makefile
25 lines
489 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 JUCE
|
|
|
|
all: JUCE
|
|
|
|
Makefile: juce_premake.lua
|
|
@echo ==== Regenerating Makefiles ====
|
|
@premake --file $^ --cc gcc --target gnu
|
|
|
|
JUCE:
|
|
@echo ==== Building JUCE ====
|
|
@$(MAKE) --no-print-directory -C . -f JUCE.make
|
|
|
|
clean:
|
|
@$(MAKE) --no-print-directory -C . -f JUCE.make clean
|