mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-04-09 20:30:33 -04:00
Closes: https://bugs.gentoo.org/830153 Closes: https://bugs.gentoo.org/830152 Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in>
18 lines
433 B
Diff
18 lines
433 B
Diff
--- a/xcursorgen/makefile
|
|
+++ b/xcursorgen/makefile
|
|
@@ -1,12 +1,12 @@
|
|
all: xcursorgen.so
|
|
|
|
-CC= gcc
|
|
+CC ?= gcc
|
|
LIBS= -lX11 -lXcursor -lpng -lz
|
|
OUT_DIR= ../clickgen
|
|
CP= cp -f
|
|
|
|
xcursorgen.so: xcursorgen.c
|
|
- $(CC) -Wl,-zdefs -shared -o xcursorgen.so -fPIC xcursorgen.c $(LIBS)
|
|
+ $(CC) $(CFLAGS) $(LDFLAGS) -Wl,-zdefs -shared -o xcursorgen.so -fPIC xcursorgen.c $(LIBS)
|
|
$(CP) xcursorgen.so $(OUT_DIR)/xcursorgen.so
|
|
|
|
clean:
|