mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-14 02:06:16 +02:00
13 lines
343 B
Makefile
13 lines
343 B
Makefile
noinst_LIBRARIES = libutil.a
|
|
|
|
libutil_a_SOURCES = util.cc util.hh hash.cc hash.hh \
|
|
archive.cc archive.hh md5.c md5.h aterm.cc aterm.hh
|
|
|
|
AM_CXXFLAGS = -DSYSTEM=\"@system@\" -Wall -I.. ${aterm_include}
|
|
|
|
check_PROGRAMS = test-aterm
|
|
|
|
test_aterm_SOURCES = test-aterm.cc
|
|
test_aterm_LDADD = ./libutil.a ../boost/format/libformat.a \
|
|
${aterm_lib}
|
|
|