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