diff options
Diffstat (limited to 'debug/Makefile.am')
-rw-r--r-- | debug/Makefile.am | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/debug/Makefile.am b/debug/Makefile.am new file mode 100644 index 00000000..b393db3e --- /dev/null +++ b/debug/Makefile.am @@ -0,0 +1,30 @@ +## +## Copyright (C) 2008 Lasse Collin +## +## This library is free software; you can redistribute it and/or +## modify it under the terms of the GNU Lesser General Public +## License as published by the Free Software Foundation; either +## version 2.1 of the License, or (at your option) any later version. +## +## This library is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +## Lesser General Public License for more details. +## + +noinst_PROGRAMS = \ + sync_flush + +AM_CPPFLAGS = \ + -I@top_srcdir@/src/common \ + -I@top_srcdir@/src/liblzma/api + +AM_LDFLAGS = -static + +LDADD = \ + @top_builddir@/src/liblzma/liblzma.la \ + @LTLIBINTL@ + +if COND_GNULIB +LDADD += @top_builddir@/lib/libgnu.a +endif |