summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--Makefile12
1 files changed, 9 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 7e4b5ec..7df81f4 100644
--- a/Makefile
+++ b/Makefile
@@ -39,11 +39,11 @@ include deps.mk
sources = \
- $(sources.sh) \
derived-assets = \
bin/transactor \
+ bin/datomic \
side-assets = \
@@ -82,8 +82,13 @@ install: all
'$(DESTDIR)$(SYSCONFDIR)' \
'$(DESTDIR)$(JAVADIR)' \
- cp bin/transactor '$(DESTDIR)$(BINDIR)'
- cp etc/init.sql etc/logback.xml etc/transactor.properties.tmpl \
+ cp bin/transactor bin/datomic \
+ '$(DESTDIR)$(BINDIR)'
+ cp \
+ etc/backup.clj \
+ etc/init.sql \
+ etc/logback.xml \
+ etc/transactor.properties.tmpl \
'$(DESTDIR)$(SYSCONFDIR)'
cp share/java/datomic/*.jar \
'$(DESTDIR)$(JAVADIR)'
@@ -95,6 +100,7 @@ install: all
uninstall:
rm -rf \
'$(DESTDIR)$(BINDIR)'/transactor \
+ '$(DESTDIR)$(BINDIR)'/datomic \
'$(DESTDIR)$(SYSCONFDIR)' \
'$(DESTDIR)$(JAVADIR)' \