15 lines
		
	
	
		
			171 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			171 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
build:
 | 
						|
	# BUILDING
 | 
						|
	bear -- cmake --build build
 | 
						|
 | 
						|
run:
 | 
						|
	cd bin/ && DiceGui
 | 
						|
 | 
						|
configure:
 | 
						|
	# CONFIGURING WITH PREMAKE
 | 
						|
	cmake -S. -Bbuild
 | 
						|
 | 
						|
clean:
 | 
						|
	rm -r bin/**
 | 
						|
	rm -r build/**
 |