tmate/Makefile.am

266 lines
5.4 KiB
Makefile
Raw Normal View History

2015-09-14 16:59:21 +02:00
# Makefile.am
# Obvious program stuff.
2013-06-02 05:16:06 +02:00
bin_PROGRAMS = tmate
2015-12-23 11:41:41 +01:00
CLEANFILES = tmate.1.mdoc tmate.1.man
# Distribution tarball options.
2011-01-04 00:40:21 +01:00
EXTRA_DIST = \
2015-06-05 13:44:15 +02:00
CHANGES FAQ README TODO COPYING examples compat/*.[ch] \
2015-12-23 11:41:41 +01:00
array.h compat.h tmux.h tmate.h osdep-*.c mdoc2man.awk tmate.1
dist-hook:
make clean
grep "^#found_debug=" configure
2011-01-21 21:35:20 +01:00
# Preprocessor flags.
CPPFLAGS += @XOPEN_DEFINES@ -DTMUX_CONF="\"$(sysconfdir)/tmux.conf\""
2011-01-21 21:35:20 +01:00
# glibc as usual does things ass-backwards and hides useful things by default,
# so everyone has to add this.
if IS_GLIBC
CFLAGS += -D_GNU_SOURCE
endif
2015-12-23 11:41:41 +01:00
if IS_LINUX
CFLAGS += -rdynamic # for stack traces
endif
2013-06-02 05:16:06 +02:00
2015-06-04 09:50:20 +02:00
# Set flags for gcc.
if IS_GCC
2014-06-18 09:21:08 +02:00
CFLAGS += -std=gnu99 -O2
if IS_DEBUG
2014-06-18 09:21:08 +02:00
CFLAGS += -g
CFLAGS += -Wno-long-long -Wall -W -Wnested-externs -Wformat=2
CFLAGS += -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations
CFLAGS += -Wwrite-strings -Wshadow -Wpointer-arith -Wsign-compare
CFLAGS += -Wundef -Wbad-function-cast -Winline -Wcast-align
2015-11-18 15:10:48 +01:00
CFLAGS += -Wdeclaration-after-statement -Wno-pointer-sign -Wno-attributes
CPPFLAGS += -DDEBUG
endif
2015-09-11 14:16:35 +02:00
if IS_COVERAGE
CFLAGS += -g -O0 --coverage
LDFLAGS += --coverage
endif
CPPFLAGS += -iquote.
endif
# Set flags for Solaris.
if IS_SUNOS
if IS_GCC
CPPFLAGS += -D_XPG6 -D__EXTENSIONS__ -D_POSIX_PTHREAD_SEMANTICS
else
2011-02-14 21:39:40 +01:00
CPPFLAGS += -D_XPG4_2 -D__EXTENSIONS__ -D_POSIX_PTHREAD_SEMANTICS
endif
endif
# Set flags for Sun CC.
if IS_SUNCC
2011-02-14 21:39:40 +01:00
CFLAGS += -erroff=E_EMPTY_DECLARATION
endif
2015-07-14 09:14:35 +02:00
# Set _LINUX_SOURCE_COMPAT for AIX for mallocing 0 bytes
if IS_AIX
DEFS += -D_LINUX_SOURCE_COMPAT=1
endif
# List of sources.
2013-06-02 05:16:06 +02:00
dist_tmate_SOURCES = \
alerts.c \
2011-01-07 15:46:13 +01:00
arguments.c \
attributes.c \
cfg.c \
client.c \
cmd-attach-session.c \
cmd-bind-key.c \
cmd-break-pane.c \
cmd-capture-pane.c \
cmd-choose-buffer.c \
cmd-choose-client.c \
cmd-choose-tree.c \
cmd-clear-history.c \
cmd-command-prompt.c \
cmd-confirm-before.c \
cmd-copy-mode.c \
cmd-detach-client.c \
cmd-display-message.c \
cmd-display-panes.c \
cmd-find.c \
cmd-find-window.c \
cmd-if-shell.c \
cmd-join-pane.c \
cmd-kill-pane.c \
cmd-kill-server.c \
cmd-kill-session.c \
cmd-kill-window.c \
cmd-list-buffers.c \
cmd-list-clients.c \
cmd-list-keys.c \
cmd-list-panes.c \
cmd-list-sessions.c \
cmd-list-windows.c \
cmd-list.c \
cmd-load-buffer.c \
cmd-lock-server.c \
cmd-move-window.c \
cmd-new-session.c \
cmd-new-window.c \
cmd-paste-buffer.c \
cmd-pipe-pane.c \
cmd-queue.c \
cmd-refresh-client.c \
cmd-rename-session.c \
cmd-rename-window.c \
cmd-resize-pane.c \
cmd-respawn-pane.c \
cmd-respawn-window.c \
cmd-rotate-window.c \
cmd-run-shell.c \
cmd-save-buffer.c \
cmd-select-layout.c \
cmd-select-pane.c \
cmd-select-window.c \
cmd-send-keys.c \
cmd-set-buffer.c \
cmd-set-environment.c \
2015-12-08 08:11:09 +01:00
cmd-set-hook.c \
cmd-set-option.c \
cmd-show-environment.c \
cmd-show-messages.c \
cmd-show-options.c \
cmd-source-file.c \
cmd-split-window.c \
cmd-string.c \
cmd-swap-pane.c \
cmd-swap-window.c \
cmd-switch-client.c \
cmd-unbind-key.c \
cmd-wait-for.c \
cmd.c \
colour.c \
2012-06-18 17:24:17 +02:00
control.c \
control-notify.c \
environ.c \
2011-09-21 18:32:31 +02:00
format.c \
grid-view.c \
grid.c \
2015-12-08 08:11:09 +01:00
hooks.c \
input-keys.c \
input.c \
job.c \
key-bindings.c \
key-string.c \
layout-custom.c \
layout-set.c \
layout.c \
log.c \
mode-key.c \
names.c \
2012-03-18 03:24:33 +01:00
notify.c \
2011-01-04 00:54:51 +01:00
options-table.c \
options.c \
paste.c \
proc.c \
resize.c \
screen-redraw.c \
screen-write.c \
screen.c \
server-client.c \
server-fn.c \
server.c \
session.c \
signal.c \
status.c \
style.c \
2013-06-12 23:57:53 +02:00
tmate-debug.c \
2013-06-02 05:16:06 +02:00
tmate-ssh-client.c \
tmate-encoder.c \
tmate-decoder.c \
tmate-env.c \
2013-06-13 01:40:30 +02:00
tmate-msg.c \
2013-07-22 23:06:28 +02:00
tmate-session.c \
tmux.c \
tty-acs.c \
tty-keys.c \
tty-term.c \
tty.c \
utf8.c \
window-choose.c \
window-clock.c \
window-copy.c \
window.c \
xmalloc.c \
xterm-keys.c
2013-06-02 05:16:06 +02:00
nodist_tmate_SOURCES = osdep-@PLATFORM@.c
# Pile in all the compat/ stuff that is needed.
if NO_FORKPTY
2013-06-02 05:16:06 +02:00
nodist_tmate_SOURCES += compat/forkpty-@PLATFORM@.c
endif
if NO_IMSG
2013-06-02 05:16:06 +02:00
nodist_tmate_SOURCES += compat/imsg.c compat/imsg-buffer.c
endif
if NO_CLOSEFROM
2013-06-02 05:16:06 +02:00
nodist_tmate_SOURCES += compat/closefrom.c
endif
if NO_DAEMON
2013-06-02 05:16:06 +02:00
nodist_tmate_SOURCES += compat/daemon.c
endif
if NO_SETENV
2013-06-02 05:16:06 +02:00
nodist_tmate_SOURCES += compat/setenv.c
endif
if NO_STRLCAT
2013-06-02 05:16:06 +02:00
nodist_tmate_SOURCES += compat/strlcat.c
endif
if NO_STRLCPY
2013-06-02 05:16:06 +02:00
nodist_tmate_SOURCES += compat/strlcpy.c
endif
if NO_ASPRINTF
2013-06-02 05:16:06 +02:00
nodist_tmate_SOURCES += compat/asprintf.c
endif
if NO_FGETLN
2013-06-02 05:16:06 +02:00
nodist_tmate_SOURCES += compat/fgetln.c
endif
if NO_FPARSELN
2015-12-23 11:41:41 +01:00
nodist_tmate_SOURCES += compat/fparseln.c
endif
if NO_GETOPT
2013-06-02 05:16:06 +02:00
nodist_tmate_SOURCES += compat/getopt.c
endif
if NO_STRCASESTR
2013-06-02 05:16:06 +02:00
nodist_tmate_SOURCES += compat/strcasestr.c
endif
if NO_STRSEP
2013-06-02 05:16:06 +02:00
nodist_tmate_SOURCES += compat/strsep.c
endif
if NO_VIS
2013-06-02 05:16:06 +02:00
nodist_tmate_SOURCES += compat/vis.c compat/unvis.c
endif
if NO_STRTONUM
2013-06-02 05:16:06 +02:00
nodist_tmate_SOURCES += compat/strtonum.c
endif
if NO_B64_NTOP
2013-06-02 05:16:06 +02:00
nodist_tmate_SOURCES += compat/b64_ntop.c
endif
if NO_CFMAKERAW
2015-12-23 11:41:41 +01:00
nodist_tmate_SOURCES += compat/cfmakeraw.c
endif
2013-10-10 11:27:23 +02:00
if NO_OPENAT
2015-12-23 11:41:41 +01:00
nodist_tmate_SOURCES += compat/openat.c
2013-10-10 11:27:23 +02:00
endif
2015-11-18 13:54:29 +01:00
if NO_REALLOCARRAY
2015-12-23 11:41:41 +01:00
nodist_tmate_SOURCES += compat/reallocarray.c
2015-11-18 13:54:29 +01:00
endif
2015-12-23 11:41:41 +01:00
# Install tmate.1 in the right format.
install-exec-hook:
if test x@MANFORMAT@ = xmdoc; then \
2015-12-23 11:41:41 +01:00
sed -e "s|@SYSCONFDIR@|$(sysconfdir)|g" $(srcdir)/tmate.1 \
>$(srcdir)/tmate.1.mdoc; \
else \
2015-12-23 11:41:41 +01:00
sed -e "s|@SYSCONFDIR@|$(sysconfdir)|g" $(srcdir)/tmate.1| \
$(AWK) -f$(srcdir)/mdoc2man.awk >$(srcdir)/tmate.1.man; \
fi
$(mkdir_p) $(DESTDIR)$(mandir)/man1
2015-12-23 11:41:41 +01:00
$(INSTALL_DATA) $(srcdir)/tmate.1.@MANFORMAT@ \
$(DESTDIR)$(mandir)/man1/tmate.1