Blame | Last modification | View Log | Download
# Supported environments:# GNU/Linux# Windows NTinclude ../_sdk/common.mk.PHONY: install cleanDIRS := \noise \raytraceinstall \clean:ifeq ($(OS),Windows_NT)for %%d in ($(DIRS)) do $(MAKE) $(MFLAGS) -C %%d $@elsefor d in $(DIRS); do $(MAKE) $(MFLAGS) -C $$d $@; doneendif