1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-20 23:28:26 -04:00
nix/src/nix-store/Makefile.am

15 lines
466 B
Makefile
Raw Normal View History

bin_PROGRAMS = nix-store
2003-10-20 06:05:01 -04:00
2006-12-07 15:47:30 -05:00
nix_store_SOURCES = nix-store.cc dotgraph.cc dotgraph.hh help.txt
2005-07-22 10:52:45 -04:00
nix_store_LDADD = ../libmain/libmain.la ../libstore/libstore.la ../libutil/libutil.la \
../boost/format/libformat.la ${bdb_lib} ${aterm_lib}
2003-10-20 06:05:01 -04:00
main.o: help.txt.hh
2003-10-20 06:05:01 -04:00
%.txt.hh: %.txt
../bin2c/bin2c helpText < $< > $@ || (rm $@ && exit 1)
2003-10-20 06:05:01 -04:00
AM_CXXFLAGS = \
-I$(srcdir)/.. ${bdb_include} $(aterm_include) -I$(srcdir)/../libutil \
-I$(srcdir)/../libstore -I$(srcdir)/../libmain