
SOUNDS = \
	target/sounds/listmove.wav

DIRS += target/sounds

target/sounds/%.wav: ./src/sounds/%.wav .obj/dirs
	cp $< $@

build-sounds: $(SOUNDS)
	@echo Finished building sounds

clean-sounds:
	$(CLEAN_FILE) $(SOUNDS)

