clipnotify

Notify on new X clipboard events
git clone https://git.sinitax.com/cdown/clipnotify
Log | Files | Refs | README | LICENSE | sfeed.txt

Makefile (392B)


      1PREFIX ?= /usr/local
      2
      3x11_bsd_flags = -I/usr/X11R6/include -L/usr/X11R6/lib
      4
      5all:
      6	${CC} ${CFLAGS} ${LDFLAGS} clipnotify.c -o clipnotify $(x11_bsd_flags) -lX11 -lXfixes
      7
      8install: all
      9	mkdir -p ${DESTDIR}${PREFIX}/bin
     10	cp -f clipnotify ${DESTDIR}${PREFIX}/bin
     11	chmod 755 ${DESTDIR}${PREFIX}/bin/clipnotify
     12
     13uninstall:
     14	rm -f ${DESTDIR}${PREFIX}/bin/clipnotify
     15
     16clean:
     17	rm -f *.o *~ clipnotify