2009-05-10 19:01:15 +04:00
|
|
|
|
2009-05-08 14:01:05 +04:00
|
|
|
noinst_LTLIBRARIES = libmctty.la
|
|
|
|
|
2009-05-10 19:01:15 +04:00
|
|
|
if USE_SCREEN_SLANG
|
|
|
|
TTY_SCREEN_SRC = \
|
|
|
|
color-slang.c color-slang.h \
|
|
|
|
tty-slang.c tty-slang.h
|
|
|
|
else
|
|
|
|
TTY_SCREEN_SRC = \
|
2009-09-14 17:43:03 +04:00
|
|
|
color-ncurses.c \
|
2009-05-10 19:01:15 +04:00
|
|
|
tty-ncurses.c tty-ncurses.h
|
|
|
|
endif
|
|
|
|
|
|
|
|
TTY_SRC = \
|
2009-09-04 18:22:49 +04:00
|
|
|
color-internal.c color-internal.h \
|
2009-05-08 14:01:05 +04:00
|
|
|
color.c color.h \
|
|
|
|
key.c key.h keyxdef.c \
|
|
|
|
mouse.c mouse.h \
|
2009-07-12 14:22:41 +04:00
|
|
|
tty.c tty.h tty-internal.h \
|
2009-05-09 19:17:57 +04:00
|
|
|
win.c win.h \
|
|
|
|
x11conn.c x11conn.h
|
2009-05-08 14:01:05 +04:00
|
|
|
|
2009-05-10 19:01:15 +04:00
|
|
|
libmctty_la_SOURCES = $(TTY_SRC) $(TTY_SCREEN_SRC)
|
|
|
|
|
2010-11-30 22:13:16 +03:00
|
|
|
libmctty_la_CFLAGS = -I$(top_srcdir)
|
|
|
|
|
|
|
|
if HAVE_GMODULE
|
|
|
|
libmctty_la_CFLAGS += $(GMODULE_CFLAGS)
|
|
|
|
else
|
|
|
|
libmctty_la_CFLAGS += $(GLIB_CFLAGS)
|
|
|
|
|
|
|
|
endif
|
|
|
|
libmctty_la_CFLAGS += -DDATADIR=\""$(pkgdatadir)/"\" -DLOCALEDIR=\""$(localedir)"\"
|
|
|
|
|