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.

16 lines
326B

  1. SHELL := /bin/bash
  2. SOURCE_FILES := $(shell find ../../modules -type f -name "juce_*.h" -or -name "juce_*.dox" | sed 's/ /\\ /g')
  3. .PHONY: clean
  4. doc/index.html: build/juce_modules.dox Doxyfile
  5. doxygen
  6. build/juce_modules.dox: process_source_files.py $(SOURCE_FILES)
  7. python $< ../../modules build
  8. clean:
  9. rm -rf build doc