diff options
author | Christian Grothoff <grothoff@gnunet.org> | 2022-07-24 11:32:52 +0200 |
---|---|---|
committer | Christian Grothoff <grothoff@gnunet.org> | 2022-07-24 11:32:52 +0200 |
commit | 977ddd7bb97f9cec780407f27ccb2dbf8d1cf722 (patch) | |
tree | f2a192aedb47996805842c2dfed79e9fc3170e72 /src/exchangedb/Makefile.am | |
parent | 9eaee4c80353b4e1317c0df2418f24209c2b238d (diff) |
-adapt to latest libgnunetpq
Diffstat (limited to 'src/exchangedb/Makefile.am')
-rw-r--r-- | src/exchangedb/Makefile.am | 35 |
1 files changed, 13 insertions, 22 deletions
diff --git a/src/exchangedb/Makefile.am b/src/exchangedb/Makefile.am index afa2a3ac6..1be810148 100644 --- a/src/exchangedb/Makefile.am +++ b/src/exchangedb/Makefile.am @@ -18,34 +18,30 @@ sqlinputs = \ common-0001.sql \ drop-common.sql \ exchange-0001-part.sql \ - drop0001-exchange-part.sql \ + drop-exchange-part.sql \ shard-0001-part.sql \ - drop0001-shard-part.sql + drop-shard-part.sql sql_DATA = \ - benchmark-0000.sql \ benchmark-0001.sql \ - exchange-0000.sql \ + versioning.sql \ exchange-0001.sql \ - drop0001.sql \ - shard-0000.sql \ + drop.sql \ shard-0001.sql \ - shard-drop0001.sql + shard-drop.sql BUILT_SOURCES = \ - shard-0000.sql \ shard-0001.sql \ exchange-0001.sql \ - drop0001.sql \ - shard-drop0001.sql + drop.sql \ + shard-drop.sql CLEANFILES = \ - shard-0000.sql \ shard-0001.sql \ exchange-0001.sql \ - drop0001.sql \ - shard-drop0001.sql + drop.sql \ + shard-drop.sql exchange-0001.sql: common-0001.sql exchange-0001-part.sql chmod +w $@ || true @@ -57,19 +53,14 @@ shard-0001.sql: common-0001.sql shard-0001-part.sql cat common-0001.sql shard-0001-part.sql >$@ chmod ugo-w $@ -shard-0000.sql: exchange-0000.sql +drop.sql: drop-common.sql drop-exchange-part.sql chmod +w $@ || true - cp exchange-0000.sql $@ + cat drop-common.sql drop-exchange-part.sql >$@ chmod ugo-w $@ -drop0001.sql: drop-common.sql drop0001-exchange-part.sql +shard-drop.sql: drop-common.sql drop-shard-part.sql chmod +w $@ || true - cat drop-common.sql drop0001-exchange-part.sql >$@ - chmod ugo-w $@ - -shard-drop0001.sql: drop-common.sql drop0001-shard-part.sql - chmod +w $@ || true - cat drop-common.sql drop0001-shard-part.sql >$@ + cat drop-common.sql drop-shard-part.sql >$@ chmod ugo-w $@ EXTRA_DIST = \ |