# Master make file for encoder builds
#
# (c) 2013-2017 Society of Motion Picture & Television Engineers LLC and Woodman Labs, Inc.
# All rights reserved--use subject to compliance with end user license agreement.

# Define the subdirectories that contain make files
SUBDIRS = debug release

# Force execution of the make target in the subdirectories
.PHONY: $(SUBDIRS)

# Perform the debug and release builds
all: $(SUBDIRS)

$(SUBDIRS):
	make -C $@ $@

clean:
	for d in $(SUBDIRS); do make -C $$d $@; done

clean-all: clean
	rm -rf ../../docs
