mirror of
https://github.com/tio/tio.git
synced 2026-05-01 14:57:59 +02:00
Fixed the configure script to avoid that the bash completion script gets installed outside of the prefix location. The default install location is now $prefix/share/bash-completion/completions. Use the configure option '--with-bash-completion-dir=PATH' if you need to install the bash completion script elsewhere.
19 lines
501 B
Makefile
19 lines
501 B
Makefile
AM_CFLAGS = -Wall
|
|
bin_PROGRAMS = tio
|
|
tio_SOURCES = tty.c \
|
|
options.c \
|
|
time.c \
|
|
main.c \
|
|
log.c \
|
|
error.c \
|
|
include/tio/tty.h \
|
|
include/tio/options.h \
|
|
include/tio/time.h \
|
|
include/tio/print.h \
|
|
include/tio/log.h \
|
|
include/tio/error.h
|
|
|
|
if ENABLE_BASH_COMPLETION
|
|
bashcompletiondir=@BASH_COMPLETION_DIR@
|
|
bashcompletion_DATA=bash-completion/tio
|
|
endif
|