13 lines
		
	
	
		
			279 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			279 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
SOURCES = $(wildcard ./simmadome/src/*) $(wildcard ./simmadome/public/*)
 | 
						|
OUTPUTS = $(wildcard ./simmadome/build/*)
 | 
						|
 | 
						|
.PHONY: run frontend
 | 
						|
 | 
						|
run: $(OUTPUTS)
 | 
						|
	python3 the_prestige.py
 | 
						|
 | 
						|
frontend:
 | 
						|
	(cd simmadome && npm run build)
 | 
						|
 | 
						|
$(OUTPUTS): $(SOURCES)
 | 
						|
	(cd simmadome && npm run build)
 |