mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 00:36:20 +02:00
15 lines
482 B
Makefile
15 lines
482 B
Makefile
bin_PROGRAMS = nix-instantiate
|
|
|
|
nix_instantiate_SOURCES = nix-instantiate.cc help.txt
|
|
nix_instantiate_LDADD = ../libmain/libmain.la ../libexpr/libexpr.la \
|
|
../libstore/libstore.la ../libutil/libutil.la \
|
|
../boost/format/libformat.la
|
|
|
|
nix-instantiate.o: help.txt.hh
|
|
|
|
%.txt.hh: %.txt
|
|
../bin2c/bin2c helpText < $< > $@ || (rm $@ && exit 1)
|
|
|
|
AM_CXXFLAGS = \
|
|
-I$(srcdir)/.. -I$(srcdir)/../libutil -I$(srcdir)/../libstore \
|
|
-I$(srcdir)/../libexpr -I$(srcdir)/../libmain -I../libexpr
|