summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorroot <root@no.no.james.local>2015-12-28 11:26:32 +0000
committerroot <root@no.no.james.local>2015-12-28 11:26:32 +0000
commitc7cb971cd394ac9c66174a3c07e50bfc4fcd6e7a (patch)
treee3ebaf749e5b8cf87ee625b0e89e1279532a4446 /Makefile
downloadkobo-tools-c7cb971cd394ac9c66174a3c07e50bfc4fcd6e7a.tar.gz
kobo-tools-c7cb971cd394ac9c66174a3c07e50bfc4fcd6e7a.tar.bz2
kobo-tools-c7cb971cd394ac9c66174a3c07e50bfc4fcd6e7a.zip
original framebuffer-utils for kobo-mini from marek
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..4f49406
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,9 @@
+PROGS= eink_disable_autoupdate eink_enable_autoupdate eink_full_monochrome eink_full_update
+
+all: ${PROGS}
+
+clean:
+ /bin/rm -f ${PROGS} *.o *~ core
+
+install: ${PROGS}
+ for i in ${PROGS}; do install -m 755 -c $$i /usr/local/bin/$$i ; done