You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							17 lines
						
					
					
						
							366 B
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							17 lines
						
					
					
						
							366 B
						
					
					
				| # Makefile for MFRC522 library | |
| # | |
|  | |
| all:	package | |
| 
 | |
| help: | |
| 	@echo "Please use \`make <target>' where <target> is one of" | |
| 	@echo "  clean      to clean the project (e.g. remove process files)" | |
| 	@echo "  package    to package the library (into a zip file)" | |
| 
 | |
| clean: | |
| 	rm ./MFRC522.zip | |
| 	@echo | |
| 	@echo "Clean finished." | |
| 
 | |
| package: | |
| 	zip -o ./MFRC522.zip ./MFRC522.h ./MFRC522.cpp
 |