mirror of
				https://github.com/bensuperpc/dockcross.git
				synced 2025-11-04 09:56:23 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			258 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			258 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
PLATFORMS = base \
 | 
						|
			android-arm \
 | 
						|
			darwin-x64 \
 | 
						|
			linux-x86 \
 | 
						|
			linux-x64 \
 | 
						|
			linux-arm \
 | 
						|
			windows-x86 \
 | 
						|
			windows-x64
 | 
						|
DOCKER = docker
 | 
						|
IMAGE = steeve/cross-compiler
 | 
						|
 | 
						|
all:
 | 
						|
	for i in $(PLATFORMS); do \
 | 
						|
		$(DOCKER) build -t $(IMAGE):$$i $$i ; \
 | 
						|
	done
 |