blob: 905f86c92a6c89423bf986ef5e6b0d339ecf968c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
if HAS_CURSES
TEXTUI=gui-text
endif
if BUILD_GNOMEUI
GNOMEUI=gui-gnome
endif
if BUILD_IRSSIBOT
BOTUI=gui-none
endif
noinst_HEADERS = \
common.h \
common-setup.h \
irssi-plugin.h \
irssi-plugin-gui.h
SUBDIRS = irc-base irc-extra ui-common lib-config lib-nongui settings $(GNOMEUI) $(TEXTUI) $(BOTUI)
EXTRA_DIST = signal.doc
|