mirror of
				https://github.com/Atmosphere-NX/Atmosphere.git
				synced 2025-11-04 12:51:17 +01:00 
			
		
		
		
	* add jpegdec reimplementation * reduce work memory * fix color space * jpegdec: cleanup results to use atmosphere style * fix outdated comments, correct do/while bug Co-authored-by: Michael Scire <SciresM@gmail.com>
		
			
				
	
	
		
			13 lines
		
	
	
		
			263 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			263 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
MODULES := loader ncm pm sm boot ams_mitm spl eclct.stub ro creport fatal dmnt boot2 erpt jpegdec
 | 
						|
 | 
						|
SUBFOLDERS := $(MODULES)
 | 
						|
 | 
						|
TOPTARGETS := all clean
 | 
						|
 | 
						|
$(TOPTARGETS): $(SUBFOLDERS)
 | 
						|
 | 
						|
$(SUBFOLDERS):
 | 
						|
	$(MAKE) -C $@ $(MAKECMDGOALS)
 | 
						|
 | 
						|
.PHONY: $(TOPTARGETS) $(SUBFOLDERS)
 |