#/////////////////////////////////////////////////////////// #// #// XBox sound directories makefile #// #/////////////////////////////////////////////////////////// include ../makefile.platform include ../../makefile.generic DEST_DIR=$(DATA_ROOT)/Sound SUBDIRS = \ Dunes \ Forest \ Glacier \ SpotFX \ Stadium \ Swamp \ Vehicles all: $(DEST_DIR)/dsstdfx.bin @$(foreach X, $(SUBDIRS), $(MAKE) --no-print-directory -C $(X) all; ) clean: @$(foreach X, $(SUBDIRS), $(MAKE) --no-print-directory -C $(X) clean; ) $(DEST_DIR)/dsstdfx.bin: dsstdfx.bin @echo Copying DSP file to $(DEST_DIR)/dsstdfx.bin @$(CP) -f dsstdfx.bin $(DEST_DIR)