mirror of
				https://github.com/Atmosphere-NX/Atmosphere.git
				synced 2025-10-31 03:05:48 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			62 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| TOPTARGETS := all clean dist
 | |
| AMSBRANCH := $(shell git symbolic-ref --short HEAD)
 | |
| AMSREV := $(AMSBRANCH)-$(shell git rev-parse --short HEAD)
 | |
| 
 | |
| ifneq (, $(strip $(shell git status --porcelain 2>/dev/null)))
 | |
|     AMSREV := $(AMSREV)-dirty
 | |
| endif
 | |
| 
 | |
| all: fusee stratosphere exosphere thermosphere
 | |
| 
 | |
| thermosphere:
 | |
| 	$(MAKE) -C thermosphere all
 | |
| 
 | |
| exosphere: thermosphere
 | |
| 	$(MAKE) -C exosphere all
 | |
| 
 | |
| stratosphere: exosphere
 | |
| 	$(MAKE) -C stratosphere all
 | |
| 
 | |
| fusee: exosphere stratosphere
 | |
| 	$(MAKE) -C $@ all
 | |
| 
 | |
| clean:
 | |
| 	$(MAKE) -C fusee clean
 | |
| 	rm -rf out
 | |
|     
 | |
| dist: all
 | |
| 	$(eval MAJORVER = $(shell grep '\ATMOSPHERE_RELEASE_VERSION_MAJOR\b' common/include/atmosphere/version.h \
 | |
| 		| tr -s [:blank:] \
 | |
| 		| cut -d' ' -f3))
 | |
| 	$(eval MINORVER = $(shell grep '\ATMOSPHERE_RELEASE_VERSION_MINOR\b' common/include/atmosphere/version.h \
 | |
| 		| tr -s [:blank:] \
 | |
| 		| cut -d' ' -f3))
 | |
| 	$(eval MICROVER = $(shell grep '\ATMOSPHERE_RELEASE_VERSION_MICRO\b' common/include/atmosphere/version.h \
 | |
| 		| tr -s [:blank:] \
 | |
| 		| cut -d' ' -f3))
 | |
| 	$(eval AMSVER = $(MAJORVER).$(MINORVER).$(MICROVER)-$(AMSREV))
 | |
| 	rm -rf atmosphere-$(AMSVER)
 | |
| 	rm -rf out
 | |
| 	mkdir atmosphere-$(AMSVER)
 | |
| 	mkdir atmosphere-$(AMSVER)/atmosphere
 | |
| 	mkdir -p atmosphere-$(AMSVER)/atmosphere/titles/0100000000000036
 | |
| 	mkdir -p atmosphere-$(AMSVER)/atmosphere/titles/0100000000000034
 | |
| 	mkdir -p atmosphere-$(AMSVER)/atmosphere/titles/0100000000000032
 | |
| 	cp fusee/fusee-secondary/fusee-secondary.bin atmosphere-$(AMSVER)/fusee-secondary.bin
 | |
| 	cp common/defaults/BCT.ini atmosphere-$(AMSVER)/BCT.ini
 | |
| 	cp common/defaults/loader.ini atmosphere-$(AMSVER)/atmosphere/loader.ini
 | |
| 	cp -r common/defaults/kip_patches atmosphere-$(AMSVER)/atmosphere/kip_patches
 | |
| 	cp stratosphere/creport/creport.nsp atmosphere-$(AMSVER)/atmosphere/titles/0100000000000036/exefs.nsp
 | |
| 	cp stratosphere/fatal/fatal.nsp atmosphere-$(AMSVER)/atmosphere/titles/0100000000000034/exefs.nsp
 | |
| 	cp stratosphere/set_mitm/set_mitm.nsp atmosphere-$(AMSVER)/atmosphere/titles/0100000000000032/exefs.nsp
 | |
| 	mkdir -p atmosphere-$(AMSVER)/atmosphere/titles/0100000000000032/flags
 | |
| 	touch atmosphere-$(AMSVER)/atmosphere/titles/0100000000000032/flags/boot2.flag
 | |
| 	cd atmosphere-$(AMSVER); zip -r ../atmosphere-$(AMSVER).zip ./*; cd ../;
 | |
| 	rm -r atmosphere-$(AMSVER)
 | |
| 	mkdir out
 | |
| 	mv atmosphere-$(AMSVER).zip out/atmosphere-$(AMSVER).zip
 | |
| 	cp fusee/fusee-primary/fusee-primary.bin out/fusee-primary.bin
 | |
|    
 | |
| 
 | |
| .PHONY: $(TOPTARGETS) fusee
 |