21 lines
		
	
	
		
			342 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			342 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
# bthandler
 | 
						|
# See LICENSE file for copyright and license details.
 | 
						|
 | 
						|
VERSION = 1.0
 | 
						|
 | 
						|
# paths
 | 
						|
PREFIX = ~/.local/bin
 | 
						|
 | 
						|
SRC = bthandler
 | 
						|
OBJ = $(SRC:.c=.o)
 | 
						|
 | 
						|
install:
 | 
						|
	mkdir -p $(DESTDIR)$(PREFIX)
 | 
						|
	cp -f bthandler $(DESTDIR)$(PREFIX)
 | 
						|
	chmod 755 $(DESTDIR)$(PREFIX)/bthandler
 | 
						|
 | 
						|
uninstall:
 | 
						|
	rm -f $(DESTDIR)$(PREFIX)/bthandler
 | 
						|
 | 
						|
.PHONY: install uninstall
 |