summaryrefslogtreecommitdiffstats
path: root/text-utils
diff options
context:
space:
mode:
authorKarel Zak2012-06-26 17:53:09 +0200
committerKarel Zak2012-06-26 17:53:09 +0200
commit22d2322eb1202f6961041b8fcacbe6e6856fb6b0 (patch)
treea0cf1195fe05d2cc7c3ad681a84b6be365df676f /text-utils
parentbuild-sys: convert text-utils/ to module (diff)
downloadkernel-qcow2-util-linux-22d2322eb1202f6961041b8fcacbe6e6856fb6b0.tar.gz
kernel-qcow2-util-linux-22d2322eb1202f6961041b8fcacbe6e6856fb6b0.tar.xz
kernel-qcow2-util-linux-22d2322eb1202f6961041b8fcacbe6e6856fb6b0.zip
build-sys: convert term-utils/ to module
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'text-utils')
-rw-r--r--text-utils/Makefile.am62
1 files changed, 0 insertions, 62 deletions
diff --git a/text-utils/Makefile.am b/text-utils/Makefile.am
deleted file mode 100644
index e495cdfaf..000000000
--- a/text-utils/Makefile.am
+++ /dev/null
@@ -1,62 +0,0 @@
-include $(top_srcdir)/config/include-Makefile.am
-
-usrbin_exec_PROGRAMS = \
- col \
- colcrt \
- colrm \
- column \
- hexdump \
- rev \
- tailf
-
-column_SOURCES = column.c $(top_srcdir)/lib/strutils.c
-
-col_SOURCES = col.c $(top_srcdir)/lib/strutils.c
-
-colrm_SOURCES = colrm.c $(top_srcdir)/lib/strutils.c
-
-hexdump_SOURCES = \
- conv.c \
- display.c \
- hexdump.c \
- hexdump.h \
- hexsyntax.c \
- parse.c \
- $(top_srcdir)/lib/strutils.c
-
-tailf_SOURCES = tailf.c $(top_srcdir)/lib/strutils.c
-
-dist_man_MANS = \
- col.1 \
- colcrt.1 \
- colrm.1 \
- column.1 \
- hexdump.1 \
- rev.1 \
- tailf.1
-
-if BUILD_LINE
-usrbin_exec_PROGRAMS += line
-dist_man_MANS += line.1
-endif
-
-if HAVE_NCURSES
-bin_PROGRAMS = more
-usrbin_exec_PROGRAMS += ul pg
-if HAVE_TINFO
-more_LDADD = -ltinfo
-pg_LDADD = -ltinfo @NCURSES_LIBS@
-ul_LDADD = -ltinfo
-else
-more_LDADD = @NCURSES_LIBS@
-pg_LDADD = @NCURSES_LIBS@
-ul_LDADD = @NCURSES_LIBS@
-endif
-dist_man_MANS += ul.1 more.1 pg.1
-else
-if HAVE_TERMCAP
-bin_PROGRAMS = more
-more_LDADD = -ltermcap
-dist_man_MANS += more.1
-endif
-endif