about summary refs log tree commit diff
path: root/Makefile
blob: 4d6545abb59d8882e3e167326821a971193b4dde (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
x11_bsd_flags = -I/usr/X11R6/include -L/usr/X11R6/lib

all:
	${CC} ${CFLAGS} ${LDFLAGS} clipnotify.c -o clipnotify $(x11_bsd_flags) -lX11 -lXfixes

install: all
	cp clipnotify /usr/local/bin

uninstall:
	rm /usr/local/bin/clipnotify

clean:
	rm -f *.o *~ clipnotify