summaryrefslogtreecommitdiffstats
path: root/src/mail/Makefile
diff options
context:
space:
mode:
authorSebastian Reichel <sre@ring0.de>2013-05-05 21:48:55 +0200
committerSebastian Reichel <sre@ring0.de>2013-05-05 21:48:55 +0200
commit145c5300260a69b208b4539a1bbd1bbbb1bf46f6 (patch)
treeec17647f95f25c553a49582d1d2a5fa47ff8aed8 /src/mail/Makefile
parent831fe57cb42b1fbf02ba0ee7654de59923dcd381 (diff)
downloadserial-barcode-scanner-145c5300260a69b208b4539a1bbd1bbbb1bf46f6.tar.bz2
mail: initial mail service
This process provides an DBus interface for sending mails to users. It has MIME support for plain text and html mails and supports attachments. The service gets the SMTP server's hostname, port and authentication data from the configuration daemon.
Diffstat (limited to 'src/mail/Makefile')
-rw-r--r--src/mail/Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/mail/Makefile b/src/mail/Makefile
new file mode 100644
index 0000000..5250e62
--- /dev/null
+++ b/src/mail/Makefile
@@ -0,0 +1,9 @@
+all: mailer
+
+mailer: main.vala mailer.vala mail.vala mailer-interface.vala ../config/config-interface.vala
+ valac -o $@ --vapidir=../../vapi --pkg posix --pkg libesmtp --pkg gio-2.0 --pkg gmime-2.6 -X -D_GNU_SOURCE -X -lesmtp -X -lssl -X -lcrypto -X -ldl -X -pthread $^
+
+clean:
+ rm -f mailer
+
+.PHONY: all clean