summaryrefslogtreecommitdiffstats
path: root/src/web/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/web/Makefile')
-rw-r--r--src/web/Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/web/Makefile b/src/web/Makefile
new file mode 100644
index 0000000..cc9d77e
--- /dev/null
+++ b/src/web/Makefile
@@ -0,0 +1,9 @@
+all: web
+
+web: main.vala web.vala websession.vala csv.vala template.vala ../database/db-interface.vala ../pgp/pgp-interface.vala ../price.vapi
+ valac -o $@ --vapidir=../../vapi --pkg gee-1.0 --pkg gio-2.0 --pkg libsoup-2.4 --pkg posix --pkg libarchive --pkg gpgme $^
+
+clean:
+ rm -rf web
+
+.PHONY: all clean