mirror of
https://github.com/zeldaret/oot
synced 2026-05-30 08:56:41 -04:00
ef329e633a
* [Audio 2/?] Extract audio samples to wav Co-authored-by: zelda2774 <69368340+zelda2774@users.noreply.github.com> * How * Hopefully fix warning I don't get locally * Pad default sample filenames, comment on the vadpcm frame encoder functions, other suggested changes * Small tweaks to above * Remove some obsolete code --------- Co-authored-by: zelda2774 <69368340+zelda2774@users.noreply.github.com>
15 lines
192 B
Makefile
15 lines
192 B
Makefile
|
|
.PHONY: all clean distclean format
|
|
|
|
all:
|
|
$(MAKE) -C sampleconv
|
|
|
|
clean:
|
|
$(MAKE) -C sampleconv clean
|
|
|
|
distclean: clean
|
|
$(MAKE) -C sampleconv distclean
|
|
|
|
format:
|
|
$(MAKE) -C sampleconv format
|