mirror of
				https://github.com/Atmosphere-NX/Atmosphere.git
				synced 2025-11-04 04:51:16 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			285 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			285 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
MODULES := loader pm sm boot ams_mitm spl eclct.stub ro creport fatal dmnt
 | 
						|
 | 
						|
SUBFOLDERS := libstratosphere $(MODULES)
 | 
						|
 | 
						|
TOPTARGETS := all clean
 | 
						|
 | 
						|
$(TOPTARGETS): $(SUBFOLDERS)
 | 
						|
 | 
						|
$(SUBFOLDERS):
 | 
						|
	$(MAKE) -C $@ $(MAKECMDGOALS)
 | 
						|
 | 
						|
$(MODULES): libstratosphere
 | 
						|
 | 
						|
.PHONY: $(TOPTARGETS) $(SUBFOLDERS)
 |