mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 00:36:20 +02:00
9898746ef3
* Replace all directory reading code by a generic readDirectory() function.
11 lines
385 B
Makefile
11 lines
385 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
|
|
|
|
AM_CXXFLAGS = \
|
|
-I.. -I../../externals/inst/include -I../libutil -I../libstore \
|
|
-I../libexpr -I../libmain
|