arif/examples/Makefile.am

41 lines
1004 B
Makefile
Raw Permalink Normal View History

2023-07-28 00:30:25 +00:00
#
2023-02-12 12:26:45 +00:00
# Copyright (C) 2023 CismonX <admin@cismon.net>
2023-07-28 00:30:25 +00:00
#
2023-02-12 12:26:45 +00:00
# Copying and distribution of this file, with or without modification, are
# permitted in any medium without royalty, provided the copyright notice and
# this notice are preserved. This file is offered as-is, without any warranty.
2023-07-28 00:30:25 +00:00
#
2023-02-12 12:26:45 +00:00
2024-04-10 14:52:14 +00:00
bin_PROGRAMS =
include_HEADERS =
noinst_HEADERS =
pkglib_LTLIBRARIES =
2024-04-10 14:52:14 +00:00
dist_man1_MANS =
dist_man3_MANS =
2023-02-12 12:26:45 +00:00
if BUILD_ARIF_RIME
include_HEADERS += arif_rime.h
noinst_HEADERS += arif_rime_workaround.h
pkglib_LTLIBRARIES += rime.la
dist_man3_MANS += arif_rime.3
2023-02-12 12:26:45 +00:00
rime_la_CPPFLAGS = $(RIME_CFLAGS) -I$(top_srcdir)/include
rime_la_LDFLAGS = -module
rime_la_LIBADD = $(RIME_LIBS)
rime_la_SOURCES = arif_rime.c arif_rime_workaround.cc
2023-02-12 12:26:45 +00:00
endif # BUILD_ARIF_RIME
2024-04-10 14:52:14 +00:00
if BUILD_RL_LOOP
bin_PROGRAMS += rl-loop
dist_man1_MANS += rl-loop.1
rl_loop_CPPFLAGS = $(READLINE_CFLAGS)
rl_loop_LDADD = $(READLINE_LIBS)
rl_loop_SOURCES = rl_loop.c
endif # BUILD_RL_LOOP