Atmosphere/Makefile
TuxSH b4eeddd7e1 Revamp all the Makefiles (thanks @fincs @WinterMute)
... dependencies are now properly handled (e.g. header changes, etc.)
2018-05-19 01:07:27 +02:00

11 lines
123 B
Makefile

TOPTARGETS := all clean
all: fusee
fusee:
$(MAKE) -C $@ all
clean:
$(MAKE) -C fusee clean
.PHONY: $(TOPTARGETS) fusee