cb59151294
bgs allows you to tailor the appearance of the background ("root") window on a workstation display running X. It uses imlib2 for image rendering and rotates the images automatically. It is designed for dynamic Xinerama/Xrandr setups such as those used with notebooks, but it works well in any setup. From James Turner (MAINTAINER) ok okan@
21 lines
423 B
Plaintext
21 lines
423 B
Plaintext
$OpenBSD: patch-Makefile,v 1.1.1.1 2008/07/16 16:16:14 merdely Exp $
|
|
--- Makefile.orig Sun Jul 13 11:51:32 2008
|
|
+++ Makefile Sun Jul 13 11:52:46 2008
|
|
@@ -15,14 +15,12 @@ options:
|
|
@echo "CC = ${CC}"
|
|
|
|
.c.o:
|
|
- @echo CC $<
|
|
- @${CC} -c ${CFLAGS} $<
|
|
+ ${CC} -c ${CFLAGS} $<
|
|
|
|
${OBJ}: config.mk
|
|
|
|
bgs: ${OBJ}
|
|
- @echo CC -o $@
|
|
- @${CC} -o $@ ${OBJ} ${LDFLAGS}
|
|
+ ${CC} -o $@ ${OBJ} ${LDFLAGS}
|
|
|
|
clean:
|
|
@echo cleaning
|