aboutsummaryrefslogtreecommitdiff
path: root/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 /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 'Makefile')
-rw-r--r--Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..7050f6d
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,15 @@
+all:
+ make -C src/safe_x11/
+ mkdir -p target/debug
+ cp src/safe_x11/libsafex11.so target/debug
+ cargo build
+
+release:
+ make -C src/safe_x11/ release
+ mkdir -p target/release
+ cp src/safe_x11/libsafex11.so target/release
+ cargo build --release
+
+clean:
+ make -C src/safe_x11/ clean
+ cargo clean