mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 00:36:20 +02:00
078e20885e
$ nix-instantiate --help error: unknown flag `--help` Try `nix-instantiate --help' for more information. :-)
16 lines
479 B
Makefile
16 lines
479 B
Makefile
bin_PROGRAMS = nix-env
|
|
|
|
nix_env_SOURCES = main.cc
|
|
nix_env_LDADD = ../libmain/libmain.a ../libexpr/libexpr.a \
|
|
../libstore/libstore.a ../libutil/libutil.a \
|
|
../boost/format/libformat.a -L../../externals/inst/lib -ldb_cxx \
|
|
-lsglr -lATB -lconversion -lasfix2 -lmept -lATerm
|
|
|
|
main.o: help.txt.hh
|
|
|
|
%.txt.hh: %.txt
|
|
../bin2c/bin2c helpText < $< > $@ || (rm $@ && exit 1)
|
|
|
|
AM_CXXFLAGS = \
|
|
-I.. -I../../externals/inst/include -I../libutil -I../libstore \
|
|
-I../libexpr -I../libmain
|