f4d7b17dda
Xnodecor is an x11 utility by which a user can make an window manager ignores his/her specified applications. Such applications (e.g. clocks) appear without their border and title bar, are skipped in keyboard focus-circulation, and are sticky for flippng over multiple virtual screens. This may be convenient for a user using a simple window manager such as wmx. PR: ports/45329 Submitted by: Katsura Matsumoto <katsura@cc.okayama-u.ac.jp>
15 lines
265 B
Makefile
15 lines
265 B
Makefile
# $FreeBSD$
|
|
CFLAGS= -I${X11BASE}/include
|
|
LDFLAGS= -L${X11BASE}/lib
|
|
LIBS= -lX11
|
|
|
|
all: xnodecor
|
|
|
|
xnodecor:
|
|
$(CC) -o xnodecor xnodecor.c $(CFLAGS) $(LDFLAGS) $(LIBS)
|
|
|
|
install:
|
|
${BSD_INSTALL_PROGRAM} xnodecor ${X11BASE}/bin
|
|
|
|
clean:
|
|
rm -f *.rej a.out core xnodecor
|