mirror of
https://github.com/zeldaret/oot.git
synced 2025-01-14 20:27:13 +00:00
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
|