mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-15 06:06:04 +00: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>
14 lines
192 B
Makefile
14 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
|