12 lines
		
	
	
		
			295 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			295 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| .PHONY: all help archive
 | |
| all: help
 | |
| 
 | |
| help:
 | |
| 	@echo "usage: make <command>"
 | |
| 	@echo "commands are:"
 | |
| 	@echo " - help: see this help"
 | |
| 	@echo " - archive: Generate the archive"
 | |
| 
 | |
| archive: rapport/rapport.pdf requirements.txt spf.lark spf.py
 | |
| 	tar -czf Projet_compilation_anthony_debucquoy_2025.tar.xz $^
 |