aboutsummaryrefslogtreecommitdiff
path: root/src/safe_x11/Makefile
diff options
context:
space:
mode:
authorMatias Linares <matiaslina@openmailbox.org>2015-11-22 02:58:41 -0300
committerMatias Linares <matiaslina@openmailbox.org>2015-11-22 02:58:41 -0300
commit5da38341bc54f24c8cad41f1b63405d8cc955fe7 (patch)
treedebe4dda2dd02cc23ed64b54df768a0f584938d2 /src/safe_x11/Makefile
parenta21473f60c6cfad6335db3b0b45cdff23f8b3a89 (diff)
downloaddotwm-5da38341bc54f24c8cad41f1b63405d8cc955fe7.tar.gz
next_xevent don't block anymore!
Now the next_xevent (from the safex11) will not block forever. So we can listen the socket without doing some thread stuff.
Diffstat (limited to 'src/safe_x11/Makefile')
-rw-r--r--src/safe_x11/Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/safe_x11/Makefile b/src/safe_x11/Makefile
new file mode 100644
index 0000000..4ea8a63
--- /dev/null
+++ b/src/safe_x11/Makefile
@@ -0,0 +1,7 @@
+all:
+ $(CC) -c -fPIC safex11.c -o safex11.o -lX11
+ $(CC) -shared -o libsafex11.so safex11.o -lX11
+
+clean:
+ rm safex11.o
+ rm *.so*