mirror of
				https://codeberg.org/claui/mobile-config-firefox.git
				synced 2025-11-03 20:15:56 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			423 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			423 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
USERCHROME_FILES := root.css urlbar.css appMenu.css
 | 
						|
 | 
						|
all: out/home.html out/policies.json out/prefs.js out/userChrome.css
 | 
						|
 | 
						|
clean:
 | 
						|
	rm -rf out
 | 
						|
out:
 | 
						|
	mkdir out
 | 
						|
 | 
						|
out/home.html: src/home.html out
 | 
						|
	cat $< > $@
 | 
						|
 | 
						|
out/policies.json: src/policies.json out
 | 
						|
	cat $< > $@
 | 
						|
 | 
						|
out/prefs.js: src/prefs.js out
 | 
						|
	cat $< > $@
 | 
						|
 | 
						|
out/userChrome.css: out src/userChrome/*.css
 | 
						|
	( cd src/userChrome; cat $(USERCHROME_FILES) ) > $@
 | 
						|
 | 
						|
.PHONY: all clean
 |