sclip

shitty clipboard
git clone git://git.ckyln.com/~cem/sclip.git
Log | Files | Refs | README | LICENSE

Makefile (277B)


      1 PREFIX = /usr/local
      2 BINDIR = $(PREFIX)/bin
      3 
      4 options:
      5 	@echo Build options for sclip
      6 	@echo PREFIX = ${PREFIX}
      7 	@echo BINDIR = ${BINDIR}
      8 
      9 install:
     10 	install -Dm755 sclip $(DESTDIR)$(BINDIR)/sclip
     11 
     12 uninstall:
     13 	rm -f $(DESTDIR)$(BINDIR)/sclip
     14 
     15 
     16 .PHONY: options install uninstall
     17