mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-02-06 08:45:21 +00:00
10 lines
123 B
Makefile
10 lines
123 B
Makefile
TOPTARGETS := all clean
|
|
|
|
all: fusee
|
|
fusee:
|
|
$(MAKE) -C $@ all
|
|
|
|
clean:
|
|
$(MAKE) -C fusee clean
|
|
|
|
.PHONY: $(TOPTARGETS) fusee
|