diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2010-02-18T13·16+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2010-02-18T13·16+0000 |
commit | c1a07f94451cfa93aa9ac986188d0e9a536e4b9f (patch) | |
tree | 23938df4388bbc35f3d29b50607d4e3bdf193c96 /src/libstore/Makefile.am | |
parent | eaaa13ce475687ac0d0e2d3c22c7de73a9a83a49 (diff) |
* Convert the Nix database to SQLite.
Diffstat (limited to 'src/libstore/Makefile.am')
-rw-r--r-- | src/libstore/Makefile.am | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/libstore/Makefile.am b/src/libstore/Makefile.am index 863871519390..0140857b8100 100644 --- a/src/libstore/Makefile.am +++ b/src/libstore/Makefile.am @@ -19,5 +19,10 @@ EXTRA_DIST = derivations-ast.def derivations-ast.cc AM_CXXFLAGS = -Wall \ -I$(srcdir)/.. ${aterm_include} -I$(srcdir)/../libutil +local-store.lo: schema.sql.hh + +%.sql.hh: %.sql + ../bin2c/bin2c schema < $< > $@ || (rm $@ && exit 1) + derivations-ast.cc derivations-ast.hh: ../aterm-helper.pl derivations-ast.def $(perl) $(srcdir)/../aterm-helper.pl derivations-ast.hh derivations-ast.cc < $(srcdir)/derivations-ast.def |