mirror of
				https://gitlab.science.ru.nl/mthesis-edeboone/m.internship-documentation.git
				synced 2025-10-27 02:06:35 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			267 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			267 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| .PHONY: all dist dist-clean
 | |
| 
 | |
| 
 | |
| all: dist
 | |
| dist: \
 | |
| 	reference-clock.pdf  reference-clock.png \
 | |
| 	wr-clocks.pdf wr-clocks.png
 | |
| 
 | |
| dist-clean:
 | |
| 	rm -v reference-clock.*
 | |
| 	rm -v wr-clocks.*
 | |
| 
 | |
| 
 | |
| reference-clock.%: src/reference-clock.py
 | |
| 	$< $@
 | |
| 
 | |
| wr-clocks.%: src/wr-clocks.py
 | |
| 	$< $@
 |