Newer
Older
Import / research / embedded / src / sounds / Makefile
@John John on 29 Dec 2020 222 bytes bulk import from macbookpro checkouts

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)