summaryrefslogtreecommitdiffstats
path: root/src/input-device/Makefile
diff options
context:
space:
mode:
authorSebastian Reichel <sre@ring0.de>2015-08-24 14:18:19 +0200
committerSebastian Reichel <sre@ring0.de>2015-09-12 17:00:43 +0200
commit9dce0dfa4cd90e7ce2131e1e5821f54eb3754b26 (patch)
tree11806709f96f236c87575e7bfbde0d4b244f5863 /src/input-device/Makefile
parentb3464b4f908197fdb3cf17f25b82e9315f9734a2 (diff)
downloadserial-barcode-scanner-9dce0dfa4cd90e7ce2131e1e5821f54eb3754b26.tar.bz2
input-device: add new daemon
The input-device daemon can be used instead of the serial-device daemon for barcode scanners, that are connected as HID device.
Diffstat (limited to 'src/input-device/Makefile')
-rw-r--r--src/input-device/Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/input-device/Makefile b/src/input-device/Makefile
new file mode 100644
index 0000000..aba6c73
--- /dev/null
+++ b/src/input-device/Makefile
@@ -0,0 +1,10 @@
+all: input-device
+ @echo > /dev/null
+
+input-device: main.vala input-device.vala input-device-interface.vala ../config/config-interface.vala
+ valac -X -w -o $@ --pkg linux --pkg posix --pkg gio-2.0 $^
+
+clean:
+ rm -rf input-device
+
+.PHONY: all clean