13 lines
		
	
	
		
			211 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			211 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| all:
 | |
| 	gcc -o fedi_post fedi_post.c $(shell pkg-config --cflags --libs r_util r_io libcurl)
 | |
| 
 | |
| clean:
 | |
| 	rm fedi_post
 | |
| 
 | |
| install:
 | |
| 	cp fedi_post /usr/bin
 | |
| 	chmod 755 /usr/bin/fedi_post
 | |
| 
 | |
| uninstall:
 | |
| 	rm /usr/bin/fedi_post
 |