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.

17 lines
335B

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