The JUCE cross-platform C++ framework, with DISTRHO/KXStudio specific changes
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
740B

  1. SHELL := /bin/bash
  2. SOURCE_FILES := $(shell find ../../../modules -type f -name "juce_*.h" | sed 's/ /\\ /g')
  3. EXAMPLE_DIRS := ../standalone_sdk/examples ../../../examples/BLOCKS
  4. EXAMPLE_SOURCE_FILES := $(foreach DIR,$(EXAMPLE_DIRS),$(shell find $(DIR) -type f -name "*.h" -or -name "*.cpp" | sed 's/ /\\ /g'))
  5. DOCUMENTATION_FILES := $(shell find pages -type f -name "*.dox" | sed 's/ /\\ /g')
  6. IMAGES := $(shell find images -type f | sed 's/ /\\ /g')
  7. .PHONEY: clean
  8. doc/index.html: build/juce_modules.dox Doxyfile DoxygenLayout.xml footer.html header.html stylesheet.css $(DOCUMENTATION_FILES) $(EXAMPLE_SOURCE_FILES) $(IMAGES)
  9. doxygen
  10. build/juce_modules.dox: process_source_files.py $(SOURCE_FILES)
  11. python $<
  12. clean:
  13. rm -rf build doc