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.
		
		
		
		
		
			
	
	
		
			
				
					
						
						
							|  | SHELL := /bin/bash
SOURCE_FILES := $(shell find ../../modules -type f -name "juce_*.h" -or -name "juce_*.dox" | sed 's/ /\\ /g')
.PHONY: clean
doc/index.html: build/juce_modules.dox Doxyfile
	doxygen
build/juce_modules.dox: process_source_files.py $(SOURCE_FILES)
	python $< ../../modules build
clean:
	rm -rf build doc
 |